Skip to content

Commit 055a228

Browse files
authored
Merge pull request #1180 from RedisInsight/fe/bugfix/RI-3556
#RI-3556 - change sizes for ttl and size columns
2 parents 4255ae5 + a624482 commit 055a228

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
@@ -209,8 +209,8 @@ const KeyList = forwardRef((props: Props, ref) => {
209209
{
210210
id: 'ttl',
211211
label: 'TTL',
212-
absoluteWidth: 70,
213-
minWidth: 70,
212+
absoluteWidth: 86,
213+
minWidth: 86,
214214
truncateText: true,
215215
alignment: TableCellAlignment.Right,
216216
render: (cellData: number, { nameString: name }: GetKeyInfoResponse) => {
@@ -247,8 +247,8 @@ const KeyList = forwardRef((props: Props, ref) => {
247247
{
248248
id: 'size',
249249
label: 'Size',
250-
absoluteWidth: 100,
251-
minWidth: 100,
250+
absoluteWidth: 84,
251+
minWidth: 84,
252252
alignment: TableCellAlignment.Right,
253253
textAlignment: TableCellTextAlignment.Right,
254254
render: (cellData: number, { nameString: name }: GetKeyInfoResponse) => {

0 commit comments

Comments
 (0)