We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 339ba20 commit 75e688eCopy full SHA for 75e688e
src/containers/Tenant/Diagnostics/TopQueries/columns/columns.tsx
@@ -73,6 +73,7 @@ const userSIDColumn: Column<KeyValueRow> = {
73
header: QUERIES_COLUMNS_TITLES.UserSID,
74
render: ({row}) => <div className={b('user-sid')}>{row.UserSID || '–'}</div>,
75
align: DataTable.LEFT,
76
+ width: 120,
77
};
78
79
const oneLineQueryTextColumn: Column<KeyValueRow> = {
@@ -110,6 +111,7 @@ const queryStartColumn: Column<KeyValueRow> = {
110
111
header: QUERIES_COLUMNS_TITLES.QueryStartAt,
112
render: ({row}) => formatDateTime(new Date(row.QueryStartAt as string).getTime()),
113
resizeable: false,
114
+ width: 160,
115
116
117
const requestUnitsColumn: Column<KeyValueRow> = {
0 commit comments