File tree 4 files changed +12
-12
lines changed
4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -107,8 +107,8 @@ export function getMemoryColumn<
107
107
/>
108
108
) ,
109
109
align : DataTable . LEFT ,
110
- width : 140 ,
111
- resizeMinWidth : 140 ,
110
+ width : 170 ,
111
+ resizeMinWidth : 170 ,
112
112
} ;
113
113
}
114
114
export function getSharedCacheUsageColumn <
@@ -126,8 +126,8 @@ export function getSharedCacheUsageColumn<
126
126
/>
127
127
) ,
128
128
align : DataTable . LEFT ,
129
- width : 140 ,
130
- resizeMinWidth : 140 ,
129
+ width : 170 ,
130
+ resizeMinWidth : 170 ,
131
131
} ;
132
132
}
133
133
export function getCpuColumn < T extends { PoolStats ?: TPoolStats [ ] } > ( ) : Column < T > {
@@ -162,8 +162,8 @@ export function getLoadAverageColumn<T extends {LoadAveragePercents?: number[]}>
162
162
/>
163
163
) ,
164
164
align : DataTable . LEFT ,
165
- width : 140 ,
166
- resizeMinWidth : 140 ,
165
+ width : 170 ,
166
+ resizeMinWidth : 170 ,
167
167
} ;
168
168
}
169
169
// The same as loadAverage, but more compact
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ export const CLUSTERS_COLUMNS: Column<PreparedCluster>[] = [
146
146
{
147
147
name : COLUMNS_NAMES . NODES ,
148
148
header : COLUMNS_TITLES [ COLUMNS_NAMES . NODES ] ,
149
- resizeMinWidth : 140 ,
149
+ resizeMinWidth : 170 ,
150
150
defaultOrder : DataTable . DESCENDING ,
151
151
sortAccessor : ( { cluster = { } } ) => {
152
152
const { NodesTotal = 0 } = cluster ;
@@ -166,7 +166,7 @@ export const CLUSTERS_COLUMNS: Column<PreparedCluster>[] = [
166
166
{
167
167
name : COLUMNS_NAMES . LOAD ,
168
168
header : COLUMNS_TITLES [ COLUMNS_NAMES . LOAD ] ,
169
- resizeMinWidth : 140 ,
169
+ resizeMinWidth : 170 ,
170
170
defaultOrder : DataTable . DESCENDING ,
171
171
sortAccessor : ( { cluster} ) => {
172
172
return cluster ?. NumberOfCpus ;
@@ -184,7 +184,7 @@ export const CLUSTERS_COLUMNS: Column<PreparedCluster>[] = [
184
184
{
185
185
name : COLUMNS_NAMES . STORAGE ,
186
186
header : COLUMNS_TITLES [ COLUMNS_NAMES . STORAGE ] ,
187
- resizeMinWidth : 140 ,
187
+ resizeMinWidth : 170 ,
188
188
defaultOrder : DataTable . DESCENDING ,
189
189
sortAccessor : ( { cluster} ) => {
190
190
return Number ( cluster ?. StorageTotal ) ;
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ function getColumns({
118
118
{
119
119
name : VDiskTableColumnsIds . Size ,
120
120
header : vDiskTableColumnsNames [ VDiskTableColumnsIds . Size ] ,
121
- width : 100 ,
121
+ width : 170 ,
122
122
render : ( { row} ) => {
123
123
return (
124
124
< ProgressViewer
Original file line number Diff line number Diff line change @@ -92,8 +92,8 @@ const columns: Column<PreparedNodeSystemState>[] = [
92
92
header : 'Load average' ,
93
93
sortAccessor : ( { LoadAveragePercents = [ ] } ) => LoadAveragePercents [ 0 ] ,
94
94
defaultOrder : DataTable . DESCENDING ,
95
- width : 140 ,
96
- resizeMinWidth : 140 ,
95
+ width : 170 ,
96
+ resizeMinWidth : 170 ,
97
97
render : ( { row} ) =>
98
98
row . LoadAveragePercents && row . LoadAveragePercents . length > 0 ? (
99
99
< ProgressViewer
You can’t perform that action at this time.
0 commit comments