diff options
author | bobzel <zzzman@gmail.com> | 2021-05-17 11:08:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-17 11:08:48 -0400 |
commit | b12105102ebe03382a84b81aafc95f7b13233433 (patch) | |
tree | 72952cea4fb07a17bdd21476275b1b9770f91c81 /src/client/util/CurrentUserUtils.ts | |
parent | 66f120531a7e86a7a6bfac30e9c966c3baaed99d (diff) | |
parent | 5da41b393959616e123161a75cb6c72e701acc81 (diff) |
Merge pull request #954 from browngraphicslab/filters
Filters icon
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 14bb87e89..5874a7d2c 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -1196,6 +1196,7 @@ export class CurrentUserUtils { const createDashboard = ScriptField.MakeScript(`createNewDashboard()`); dashboardDoc.contextMenuScripts = new List<ScriptField>([toggleTheme!, toggleComic!, snapshotDashboard!, createDashboard!]); dashboardDoc.contextMenuLabels = new List<string>(["Toggle Theme Colors", "Toggle Comic Mode", "Snapshot Dashboard", "Create Dashboard"]); + dashboardDoc.isDashboard = true; Doc.AddDocToList(dashboards, "data", dashboardDoc); CurrentUserUtils.openDashboard(userDoc, dashboardDoc); |