aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/TabDocView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-05-17 10:18:45 -0400
committerbobzel <zzzman@gmail.com>2022-05-17 10:18:45 -0400
commitee1fa0ad22f1643888e4c467c6f8df837cc69178 (patch)
treeefe48ceea402cc1e2c28d472b326e9e4cf955984 /src/client/views/collections/TabDocView.tsx
parent09c7ee4120f48e212f9b64fd3e307c8ce49e0cfd (diff)
fixed pointerevents on treview open icon. added browse mode for freeformcollections
Diffstat (limited to 'src/client/views/collections/TabDocView.tsx')
-rw-r--r--src/client/views/collections/TabDocView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/TabDocView.tsx b/src/client/views/collections/TabDocView.tsx
index 1310a582c..cebc3f779 100644
--- a/src/client/views/collections/TabDocView.tsx
+++ b/src/client/views/collections/TabDocView.tsx
@@ -85,7 +85,7 @@ export class TabDocView extends React.Component<TabDocViewProps> {
titleEle.value = doc.title;
titleEle.onkeydown = (e: KeyboardEvent) => {
e.stopPropagation();
- }
+ };
titleEle.onchange = undoBatch(action((e: any) => {
titleEle.size = e.currentTarget.value.length + 3;
Doc.GetProto(doc).title = e.currentTarget.value;