Skip to content

Commit a624482

Browse files
committed
#RI-3556 - change sizes for ttl and size columns
1 parent 1c302d4 commit a624482

File tree

1 file changed

+4
-4
lines changed
  • redisinsight/ui/src/pages/browser/components/key-list

1 file changed

+4
-4
lines changed

redisinsight/ui/src/pages/browser/components/key-list/KeyList.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ const KeyList = forwardRef((props: Props, ref) => {
189189
{
190190
id: 'ttl',
191191
label: 'TTL',
192-
absoluteWidth: 70,
193-
minWidth: 70,
192+
absoluteWidth: 86,
193+
minWidth: 86,
194194
truncateText: true,
195195
alignment: TableCellAlignment.Right,
196196
render: (cellData: number, { nameString: name }: GetKeyInfoResponse) => {
@@ -227,8 +227,8 @@ const KeyList = forwardRef((props: Props, ref) => {
227227
{
228228
id: 'size',
229229
label: 'Size',
230-
absoluteWidth: 100,
231-
minWidth: 100,
230+
absoluteWidth: 84,
231+
minWidth: 84,
232232
alignment: TableCellAlignment.Right,
233233
textAlignment: TableCellTextAlignment.Right,
234234
render: (cellData: number, { nameString: name }: GetKeyInfoResponse) => {

0 commit comments

Comments
 (0)