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}>
|
<Grid item xs={12}>
|
||||||
{notAvailable ? (
|
{notAvailable ? (
|
||||||
<div className={classes.notAvailableNotice}>
|
<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 />
|
<br />
|
||||||
please follow this
|
please follow this
|
||||||
<a
|
<a
|
||||||
|
|||||||
@@ -481,31 +481,31 @@ const TenantDetails = ({
|
|||||||
<td>{instances}</td>
|
<td>{instances}</td>
|
||||||
<td>Volumes:</td>
|
<td>Volumes:</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>
|
</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>
|
<tr>
|
||||||
<td>State:</td>
|
<td>State:</td>
|
||||||
<td colSpan={3}>{tenant?.currentState}</td>
|
<td colSpan={3}>{tenant?.currentState}</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user