Line Break for Tenant Details (#751)
Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
This commit is contained in:
@@ -304,7 +304,8 @@ const DirectCSIMain = ({
|
||||
<Grid item xs={12}>
|
||||
{notAvailable ? (
|
||||
<div className={classes.notAvailableNotice}>
|
||||
To manage locally attached drives you need to install direct-csi, for more information
|
||||
To manage locally attached drives you need to install direct-csi,
|
||||
for more information
|
||||
<br />
|
||||
please follow this
|
||||
<a
|
||||
|
||||
@@ -481,31 +481,31 @@ const TenantDetails = ({
|
||||
<td>{instances}</td>
|
||||
<td>Volumes:</td>
|
||||
<td>{volumes}</td>
|
||||
{tenant?.endpoints && (
|
||||
<React.Fragment>
|
||||
<td>Endpoint:</td>
|
||||
<td>
|
||||
<a
|
||||
href={tenant?.endpoints.minio}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{tenant?.endpoints.minio}
|
||||
</a>
|
||||
</td>
|
||||
<td>Console:</td>
|
||||
<td>
|
||||
<a
|
||||
href={tenant?.endpoints.console}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{tenant?.endpoints.console}
|
||||
</a>
|
||||
</td>
|
||||
</React.Fragment>
|
||||
)}
|
||||
</tr>
|
||||
{tenant?.endpoints && (
|
||||
<tr>
|
||||
<td>Endpoint:</td>
|
||||
<td>
|
||||
<a
|
||||
href={tenant?.endpoints.minio}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{tenant?.endpoints.minio}
|
||||
</a>
|
||||
</td>
|
||||
<td>Console:</td>
|
||||
<td>
|
||||
<a
|
||||
href={tenant?.endpoints.console}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{tenant?.endpoints.console}
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
)}
|
||||
<tr>
|
||||
<td>State:</td>
|
||||
<td colSpan={3}>{tenant?.currentState}</td>
|
||||
|
||||
Reference in New Issue
Block a user