Skip to content

Commit 75e688e

Browse files
committed
fix: add initial widths
1 parent 339ba20 commit 75e688e

File tree

1 file changed

+2
-0
lines changed
  • src/containers/Tenant/Diagnostics/TopQueries/columns

1 file changed

+2
-0
lines changed

src/containers/Tenant/Diagnostics/TopQueries/columns/columns.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ const userSIDColumn: Column<KeyValueRow> = {
7373
header: QUERIES_COLUMNS_TITLES.UserSID,
7474
render: ({row}) => <div className={b('user-sid')}>{row.UserSID || '–'}</div>,
7575
align: DataTable.LEFT,
76+
width: 120,
7677
};
7778

7879
const oneLineQueryTextColumn: Column<KeyValueRow> = {
@@ -110,6 +111,7 @@ const queryStartColumn: Column<KeyValueRow> = {
110111
header: QUERIES_COLUMNS_TITLES.QueryStartAt,
111112
render: ({row}) => formatDateTime(new Date(row.QueryStartAt as string).getTime()),
112113
resizeable: false,
114+
width: 160,
113115
};
114116

115117
const requestUnitsColumn: Column<KeyValueRow> = {

0 commit comments

Comments
 (0)