aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-12-16 23:12:55 -0500
committerbobzel <zzzman@gmail.com>2020-12-16 23:12:55 -0500
commit953068d7f2653d0d219246c07c5183ca8ffce3ea (patch)
tree39fe911a9e251ad8ce98b1e5ce9b5e580717f116 /src/client/views/collections
parentb19ccabeea7558e9991571063cc473f381af63fc (diff)
fixed errors with linkmenu props
Diffstat (limited to 'src/client/views/collections')
-rw-r--r--src/client/views/collections/TreeView.tsx2
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
/**