Web: Components: Table: fixed onResize error

This commit is contained in:
Nikita Gopienko 2021-08-27 14:18:13 +03:00
parent 3c0638482d
commit 45865753a2

View File

@ -206,6 +206,8 @@ class TableHeader extends React.Component {
? containerRef.current
: document.getElementById("table-container");
if (!container) return;
const storageSize = localStorage.getItem(columnStorageName);
const tableContainer = storageSize
? storageSize.split(" ")