diff options
author | bobzel <zzzman@gmail.com> | 2023-12-11 17:04:49 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-12-11 17:04:49 -0500 |
commit | 07c30aed69dfa810ddb0b861ae2dc8e8f3a27356 (patch) | |
tree | 678a0855b169eb88fdc574fd49481ee6e57b12de /src/client/views/nodes/DataVizBox/components/TableBox.tsx | |
parent | 936aa21fb576472e321a9af976d5da7b75292511 (diff) |
fixed includes of scss globals into typescript files.
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/TableBox.tsx')
-rw-r--r-- | src/client/views/nodes/DataVizBox/components/TableBox.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/TableBox.tsx b/src/client/views/nodes/DataVizBox/components/TableBox.tsx index 33be87f46..3e7d3af8c 100644 --- a/src/client/views/nodes/DataVizBox/components/TableBox.tsx +++ b/src/client/views/nodes/DataVizBox/components/TableBox.tsx @@ -11,9 +11,7 @@ import { DragManager } from '../../../../util/DragManager'; import { DocumentView } from '../../DocumentView'; import { DataVizView } from '../DataVizBox'; import './Chart.scss'; -//import { DATA_VIZ_TABLE_ROW_HEIGHT } from '../../../global/globalCssVariables.scss'; -const DATA_VIZ_TABLE_ROW_HEIGHT = '30'; - +const { default: { DATA_VIZ_TABLE_ROW_HEIGHT } } = require('../../../global/globalCssVariables.module.scss'); // prettier-ignore interface TableBoxProps { Document: Doc; layoutDoc: Doc; |