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/collections/TreeView.tsx | |
| parent | 936aa21fb576472e321a9af976d5da7b75292511 (diff) | |
fixed includes of scss globals into typescript files.
Diffstat (limited to 'src/client/views/collections/TreeView.tsx')
| -rw-r--r-- | src/client/views/collections/TreeView.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/collections/TreeView.tsx b/src/client/views/collections/TreeView.tsx index 27ff7166d..20e7fa071 100644 --- a/src/client/views/collections/TreeView.tsx +++ b/src/client/views/collections/TreeView.tsx @@ -35,8 +35,7 @@ import { CollectionView } from './CollectionView'; import { TreeSort } from './TreeSort'; import './TreeView.scss'; import * as React from 'react'; -// import { TREE_BULLET_WIDTH } from '../global/globalCssVariables.scss'; -const TREE_BULLET_WIDTH = '10px'; +const { default: { TREE_BULLET_WIDTH } } = require('../global/globalCssVariables.module.scss'); // prettier-ignore export interface TreeViewProps { treeView: CollectionTreeView; |
