Fix table row width not updating properly (#2433)
This commit is contained in:
@@ -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",
|
||||
},
|
||||
];
|
||||
|
||||
@@ -204,6 +204,9 @@ const styles = () =>
|
||||
alignItems: "center",
|
||||
outline: "none",
|
||||
},
|
||||
".ReactVirtualized__Table__row": {
|
||||
width: "100% !important",
|
||||
},
|
||||
".ReactVirtualized__Table__headerRow": {
|
||||
fontWeight: 700,
|
||||
fontSize: 14,
|
||||
|
||||
Reference in New Issue
Block a user