diff options
author | geireann <geireann.lindfield@gmail.com> | 2023-07-12 14:55:33 -0400 |
---|---|---|
committer | geireann <geireann.lindfield@gmail.com> | 2023-07-12 14:55:33 -0400 |
commit | 044f451de061373aa8865082ee9c02f567d17264 (patch) | |
tree | 6e15f606417b4f6d16a88c7d5c48fd26f4defe6c /src/client/util/CurrentUserUtils.ts | |
parent | 925920d4c8743ccb3f4dffa7791eb44883883a89 (diff) |
fixing dashboard view of shared dashboards to open dashbarods the same as sharing panel - as embeddings.
Diffstat (limited to 'src/client/util/CurrentUserUtils.ts')
-rw-r--r-- | src/client/util/CurrentUserUtils.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts index 2cee37380..f7de6b41f 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -849,6 +849,7 @@ export class CurrentUserUtils { doc.savedFilters ?? (doc.savedFilters = new List<Doc>()); doc.filterDocCount = 0; doc.treeViewFreezeChildren = "remove|add"; + doc.activePage = doc.activeDashboard === undefined ? 'home': doc.activePage; this.setupLinkDocs(doc, linkDatabaseId); this.setupSharedDocs(doc, sharingDocumentId); // sets up the right sidebar collection for mobile upload documents and sharing this.setupDefaultIconTemplates(doc); // creates a set of icon templates triggered by the document deoration icon |