aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm
diff options
context:
space:
mode:
authorusodhi <61431818+usodhi@users.noreply.github.com>2021-02-22 21:26:10 -0500
committerusodhi <61431818+usodhi@users.noreply.github.com>2021-02-22 21:26:10 -0500
commit3f954b00b8624861386b23bdb75291bd6a260de8 (patch)
tree7bb4674cb48dc02dde800b5ed7edc5658ba53ab4 /src/client/views/collections/collectionFreeForm
parent0381050cab3cbcf6f1c3552fa86cace3a1654a07 (diff)
parentf22163e9e4118df3faf06afc28045b84615fba0d (diff)
merging
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
-rw-r--r--src/client/views/collections/collectionFreeForm/MarqueeView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx
index f5a60effe..36d14056b 100644
--- a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx
+++ b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx
@@ -134,7 +134,7 @@ export class MarqueeView extends React.Component<SubCollectionViewProps & Marque
e.stopPropagation();
} else if (e.key === "f" && e.ctrlKey) {
e.preventDefault();
- const root = Docs.Create.FreeformDocument([], { title: "folder", _stayInCollection: true, system: true, isFolder: true });
+ const root = Docs.Create.TreeDocument([], { title: "folder", _stayInCollection: true, isFolder: true });
const folder = Docs.Create.TreeDocument([root], { title: "root", isFolder: true, treeViewType: "fileSystem", treeViewTruncateTitleWidth: 150 });
Doc.GetProto(folder).isFolder = true;
folder.x = x;