Skip to content

Commit

Permalink
Unit styling
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminleonard committed Oct 18, 2023
1 parent c59576a commit c31d035
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/pages/system/CapacityUtilizationPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -258,10 +258,12 @@ const UsageTab = memo(({ silos }: { silos: SiloResultsPage }) => {
<Table.Cell width="25%">{result.siloName}</Table.Cell>
<Table.Cell width="25%">{result.metrics.cpusProvisioned}</Table.Cell>
<Table.Cell width="25%">
{bytesToTiB(result.metrics.virtualDiskSpaceProvisioned)} TiB
{bytesToTiB(result.metrics.virtualDiskSpaceProvisioned)}
<span className="ml-1 inline-block text-quaternary">TiB</span>
</Table.Cell>
<Table.Cell width="25%">
{bytesToGiB(result.metrics.ramProvisioned)} GiB
{bytesToGiB(result.metrics.ramProvisioned)}
<span className="ml-1 inline-block text-quaternary">GiB</span>
</Table.Cell>
</Table.Row>
))}
Expand Down

0 comments on commit c31d035

Please sign in to comment.