Skip to content

Commit

Permalink
Use fewer line breaks to match code style
Browse files Browse the repository at this point in the history
  • Loading branch information
geektheripper committed May 21, 2023
1 parent 84e1055 commit 03505e7
Showing 1 changed file with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,27 +285,21 @@ const BasicDashboard = ({ usage }: IDashboardProps) => {
<TimeStatItem
icon={<StorageIcon />}
label={"Backend type"}
value={
usage?.backend?.backendType ?? "Unknown"
}
value={usage?.backend?.backendType ?? "Unknown"}
/>
</Grid>
<Grid item xs={4}>
<TimeStatItem
icon={<FormatDrivesIcon />}
label={"Standard storage class parity"}
value={
usage?.backend?.standardSCParity?.toString() ?? "n/a"
}
value={usage?.backend?.standardSCParity?.toString() ?? "n/a"}
/>
</Grid>
<Grid item xs={4}>
<TimeStatItem
icon={<FormatDrivesIcon />}
label={"Reduced redundancy storage class parity"}
value={
usage?.backend?.rrSCParity?.toString() ?? "n/a"
}
value={usage?.backend?.rrSCParity?.toString() ?? "n/a"}
/>
</Grid>
</Grid>
Expand Down

0 comments on commit 03505e7

Please sign in to comment.