diff options
author | usodhi <61431818+usodhi@users.noreply.github.com> | 2021-06-10 00:15:56 -0400 |
---|---|---|
committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2021-06-10 00:15:56 -0400 |
commit | fe672afad987b246b8be79366d2d9c45b6fba502 (patch) | |
tree | a2f7ac03c403415f079b341b0554a65f28894967 /src | |
parent | 0a0a467df5f87adb1f9872c82cc58bbc6c1046d7 (diff) |
removed isfolder flag from dashboard to allow double click to open dashboard
Diffstat (limited to 'src')
-rw-r--r-- | src/client/util/CurrentUserUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts index 6236e1ac9..8b3597d57 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -1185,7 +1185,7 @@ export class CurrentUserUtils { title: `Untitled Tab ${NumCast(emptyPane["dragFactory-count"])}`, }; const freeformDoc = CurrentUserUtils.GuestTarget || Docs.Create.FreeformDocument([], freeformOptions); - const dashboardDoc = Docs.Create.StandardCollectionDockingDocument([{ doc: freeformDoc, initialWidth: 600 }], { title: `Dashboard ${dashboardCount}`, isFolder: true }, id, "row"); + const dashboardDoc = Docs.Create.StandardCollectionDockingDocument([{ doc: freeformDoc, initialWidth: 600 }], { title: `Dashboard ${dashboardCount}` }, id, "row"); freeformDoc.context = dashboardDoc; // switching the tabs from the datadoc to the regular doc |