diff options
| author | bobzel <zzzman@gmail.com> | 2020-09-29 02:46:28 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-09-29 02:46:28 -0400 |
| commit | 9ad43c9e2a068fdf6308339f6f82e29cf94d2c14 (patch) | |
| tree | c8f383b67dbe267aee9cfb214171347a6e9e5caf /src/client/views/collections/TreeView.tsx | |
| parent | 1e28cf6d5398c22ad4ba3b7f0825d9d06899869e (diff) | |
changed sidebar functionality for textboxes to open outward and make handle blue when there are contents. added a fitToBox capability for contents of sidebar.
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 072cd23db..06c35de03 100644 --- a/src/client/views/collections/TreeView.tsx +++ b/src/client/views/collections/TreeView.tsx @@ -664,7 +664,7 @@ export class TreeView extends React.Component<TreeViewProps> { ignoreFields: string[] | undefined, firstLevel: boolean, whenActiveChanged: (isActive: boolean) => void, - dontRegisterView: boolean | undeifned) { + dontRegisterView: boolean | undefined) { const viewSpecScript = Cast(containingCollection.viewSpecScript, ScriptField); if (viewSpecScript) { childDocs = childDocs.filter(d => viewSpecScript.script.run({ doc: d }, console.log).result); |
