diff options
author | bobzel <zzzman@gmail.com> | 2021-03-31 00:53:33 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-31 00:53:33 -0400 |
commit | a81ea10f34369f3e36a52badd3a472fa1742cb29 (patch) | |
tree | 19ae50c4e7379504f74e5f30dd9a446fb9a4e159 /src/client/views/MainView.tsx | |
parent | 3172a475102691c720b7e7d0b696814237855914 (diff) |
trying to cleanup control of displaying linkButtons in tree views.
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index 27e6757c8..204ec370f 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -228,7 +228,7 @@ export class MainView extends React.Component { createNewPresentation = async () => { if (!await this.userDoc.myPresentations) { this.userDoc.myPresentations = new PrefetchProxy(Docs.Create.TreeDocument([], { - title: "PRESENTATION TRAILS", _height: 100, _forceActive: true, boxShadow: "0 0", _lockedPosition: true, treeViewOpen: true, system: true + title: "PRESENTATION TRAILS", childDontRegisterViews: true, _height: 100, _forceActive: true, boxShadow: "0 0", _lockedPosition: true, treeViewOpen: true, system: true })); } const pres = Docs.Create.PresDocument(new List<Doc>(), |