diff options
author | bobzel <zzzman@gmail.com> | 2020-08-10 10:46:12 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-10 10:46:12 -0400 |
commit | bf11e55b42406405bac72a0e533b18d792640768 (patch) | |
tree | 28e815df622b225910de1310c8b3b453e8998fdf | |
parent | 9351115c7ed7426f6e796a8d9310789c19ed86ef (diff) |
from last
-rw-r--r-- | src/client/views/collections/CollectionDockingView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionDockingView.tsx b/src/client/views/collections/CollectionDockingView.tsx index 0c93b4e63..3691e844f 100644 --- a/src/client/views/collections/CollectionDockingView.tsx +++ b/src/client/views/collections/CollectionDockingView.tsx @@ -517,7 +517,7 @@ export class CollectionDockingView extends React.Component<SubCollectionViewProp if (Date.now() - tab.titleElement[0].lastClick < 1000) tab.titleElement[0].select(); tab.titleElement[0].lastClick = Date.now(); tab.titleElement[0].focus(); - } + }; tab.titleElement[0].onchange = (e: any) => { tab.titleElement[0].size = e.currentTarget.value.length + 1; Doc.GetProto(doc).title = e.currentTarget.value, true; |