Fix table row width not updating properly (#2433)

This commit is contained in:
Kaan Kabalak
2022-11-07 21:13:54 +03:00
committed by GitHub
parent 7eb98035e5
commit cac8445aa1
2 changed files with 3 additions and 3 deletions

View File

@@ -62,7 +62,6 @@ export const listModeColumns = [
renderFunction: displayNiceBytes,
renderFullObject: true,
width: 100,
contentTextAlign: "center",
enableSort: true,
},
];
@@ -87,7 +86,6 @@ export const rewindModeColumns = [
renderFunction: displayNiceBytes,
renderFullObject: true,
width: 100,
contentTextAlign: "center",
enableSort: true,
},
{
@@ -95,6 +93,5 @@ export const rewindModeColumns = [
elementKey: "delete_flag",
renderFunction: displayDeleteFlag,
width: 60,
contentTextAlign: "center",
},
];

View File

@@ -204,6 +204,9 @@ const styles = () =>
alignItems: "center",
outline: "none",
},
".ReactVirtualized__Table__row": {
width: "100% !important",
},
".ReactVirtualized__Table__headerRow": {
fontWeight: 700,
fontSize: 14,