Skip to content

Commit

Permalink
fix: code-review
Browse files Browse the repository at this point in the history
  • Loading branch information
Raubzeug committed Jul 2, 2024
1 parent f737500 commit dda29e5
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ const degradedColumn: StorageGroupsColumn = {
name: GROUPS_COLUMNS_IDS.Degraded,
header: 'Degraded',
width: 110,
resizeMinWidth: 110,
render: ({row}) =>
row.Degraded ? (
<Label theme={getDegradedSeverity(row)}>Degraded: {row.Degraded}</Label>
Expand All @@ -120,8 +121,8 @@ const degradedColumn: StorageGroupsColumn = {
const usageColumn: StorageGroupsColumn = {
name: GROUPS_COLUMNS_IDS.Usage,
header: 'Usage',
width: 100,
resizeMinWidth: 70,
width: 75,
resizeMinWidth: 75,
render: ({row}) => {
// without a limit the usage can be evaluated as 0,
// but the absence of a value is more clear
Expand Down

0 comments on commit dda29e5

Please sign in to comment.