diff options
| author | bobzel <zzzman@gmail.com> | 2020-12-16 23:12:55 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-12-16 23:12:55 -0500 |
| commit | 953068d7f2653d0d219246c07c5183ca8ffce3ea (patch) | |
| tree | 39fe911a9e251ad8ce98b1e5ce9b5e580717f116 /src/client/views/collections/TreeView.tsx | |
| parent | b19ccabeea7558e9991571063cc473f381af63fc (diff) | |
fixed errors with linkmenu props
Diffstat (limited to 'src/client/views/collections/TreeView.tsx')
| -rw-r--r-- | src/client/views/collections/TreeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/TreeView.tsx b/src/client/views/collections/TreeView.tsx index f51c745bb..93d3be1fc 100644 --- a/src/client/views/collections/TreeView.tsx +++ b/src/client/views/collections/TreeView.tsx @@ -65,7 +65,7 @@ export interface TreeViewProps { whenActiveChanged: (isActive: boolean) => void; } -let treeBulletWidth = function () { return Number(TREE_BULLET_WIDTH.replace("px", "")); } +const treeBulletWidth = function () { return Number(TREE_BULLET_WIDTH.replace("px", "")); }; @observer /** |
