Line Break for Tenant Details (#751)

Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
This commit is contained in:
Daniel Valdivia
2021-05-17 14:16:03 -07:00
committed by GitHub
parent 40aca3da79
commit 8917f415cc
2 changed files with 26 additions and 25 deletions

View File

@@ -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

View File

@@ -481,8 +481,9 @@ const TenantDetails = ({
<td>{instances}</td> <td>{instances}</td>
<td>Volumes:</td> <td>Volumes:</td>
<td>{volumes}</td> <td>{volumes}</td>
</tr>
{tenant?.endpoints && ( {tenant?.endpoints && (
<React.Fragment> <tr>
<td>Endpoint:</td> <td>Endpoint:</td>
<td> <td>
<a <a
@@ -503,9 +504,8 @@ const TenantDetails = ({
{tenant?.endpoints.console} {tenant?.endpoints.console}
</a> </a>
</td> </td>
</React.Fragment>
)}
</tr> </tr>
)}
<tr> <tr>
<td>State:</td> <td>State:</td>
<td colSpan={3}>{tenant?.currentState}</td> <td colSpan={3}>{tenant?.currentState}</td>