diff options
| author | bobzel <zzzman@gmail.com> | 2022-04-28 13:53:09 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-04-28 13:53:09 -0400 |
| commit | ce94cdd070035ef6374eeb471ecf6e4542b4ba20 (patch) | |
| tree | 16695f8c6bc336ba595f5f7c98dac3f7a2e015a0 /src/client/views/collections/TabDocView.tsx | |
| parent | 59a22f3a007b201e68ac2f3e1d62e0ca5e66488a (diff) | |
fixed rendering of slides in filesystem view to not render the UI, just the doc name
Diffstat (limited to 'src/client/views/collections/TabDocView.tsx')
| -rw-r--r-- | src/client/views/collections/TabDocView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/TabDocView.tsx b/src/client/views/collections/TabDocView.tsx index 98d6049f0..8e45ec3b3 100644 --- a/src/client/views/collections/TabDocView.tsx +++ b/src/client/views/collections/TabDocView.tsx @@ -221,7 +221,7 @@ export class TabDocView extends React.Component<TabDocViewProps> { pinDoc.treeViewFieldKey = "data"; // tree view will treat the 'data' field as the field where the hierarchical children are located instead of using the document's layout string field pinDoc.treeViewExpandedView = "data";// in case the data doc has an expandedView set, this will mask that field and use the 'data' field when expanding the tree view pinDoc.treeViewGrowsHorizontally = true;// the document expands horizontally when displayed as a tree view header - pinDoc.treeViewHideHeader = true; // this will force the document to render itself as the tree view header + pinDoc.treeViewHideHeaderIfTemplate = true; // this will force the document to render itself as the tree view header const presArray: Doc[] = PresBox.Instance?.sortArray(); const size: number = PresBox.Instance?._selectedArray.size; const presSelected: Doc | undefined = presArray && size ? presArray[size - 1] : undefined; |
