diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-06-28 11:55:49 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-06-28 11:55:49 -0400 |
commit | 2b9e542ea0e62b13e1f9e0b51f3cfb8e2ce8f78d (patch) | |
tree | 5eda7fd16f907ecc0bcf57da77fc286d776f558c /src/client/views/collections/CollectionTreeView.tsx | |
parent | 83ce7f1ad7c2e1b691dbdc67408cee7c65d669b8 (diff) |
slightly improved layout of workspace facet filter box
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionTreeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTreeView.tsx b/src/client/views/collections/CollectionTreeView.tsx index 1088577d2..33e4acee5 100644 --- a/src/client/views/collections/CollectionTreeView.tsx +++ b/src/client/views/collections/CollectionTreeView.tsx @@ -124,7 +124,7 @@ class TreeView extends React.Component<TreeViewProps> { constructor(props: any) { super(props); - this._editTitleScript = ScriptField.MakeFunction(`setInPlace(self, 'editTitle', '${this._uniqueId}')`); + this._editTitleScript = ScriptField.MakeScript(`{setInPlace(self, 'editTitle', '${this._uniqueId}'); selectDoc(self);} `); if (Doc.GetT(this.doc, "editTitle", "string", true) === "*") Doc.SetInPlace(this.doc, "editTitle", this._uniqueId, false); } |