Skip to content

Commit 0d13d53

Browse files
walbornRaubzeug
andauthored
fix: expand the column 'degraded' width (#962)
Co-authored-by: Elena Makarova <[email protected]>
1 parent 615df01 commit 0d13d53

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/containers/Storage/StorageGroups/getStorageGroupsColumns.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ const erasureColumn: StorageGroupsColumn = {
106106
const degradedColumn: StorageGroupsColumn = {
107107
name: GROUPS_COLUMNS_IDS.Degraded,
108108
header: 'Degraded',
109-
width: 100,
109+
width: 110,
110+
resizeMinWidth: 110,
110111
render: ({row}) =>
111112
row.Degraded ? (
112113
<Label theme={getDegradedSeverity(row)}>Degraded: {row.Degraded}</Label>
@@ -120,8 +121,8 @@ const degradedColumn: StorageGroupsColumn = {
120121
const usageColumn: StorageGroupsColumn = {
121122
name: GROUPS_COLUMNS_IDS.Usage,
122123
header: 'Usage',
123-
width: 100,
124-
resizeMinWidth: 70,
124+
width: 75,
125+
resizeMinWidth: 75,
125126
render: ({row}) => {
126127
// without a limit the usage can be evaluated as 0,
127128
// but the absence of a value is more clear

0 commit comments

Comments
 (0)