diff options
| author | bobzel <zzzman@gmail.com> | 2024-08-26 13:53:26 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-08-26 13:53:26 -0400 |
| commit | 2e345c1ebd498e3f7e088e6fc3e1ca17082b23c1 (patch) | |
| tree | 7b564401f0edc89e9ee683bb9f1c9e32f957ae43 /src/client/views/DashboardView.tsx | |
| parent | cc3e1bc2c317cf34aba04e4935ae842b16ad4cae (diff) | |
converted unique faces to be a Doc type similar to a collection.
Diffstat (limited to 'src/client/views/DashboardView.tsx')
| -rw-r--r-- | src/client/views/DashboardView.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/DashboardView.tsx b/src/client/views/DashboardView.tsx index 4616e15e5..33e905a54 100644 --- a/src/client/views/DashboardView.tsx +++ b/src/client/views/DashboardView.tsx @@ -432,6 +432,7 @@ export class DashboardView extends ObservableReactComponent<object> { dashboardDoc.myOverlayDocs = new List<Doc>(); dashboardDoc[DocData].myPublishedDocs = new List<Doc>(); dashboardDoc[DocData].myTagCollections = new List<Doc>(); + dashboardDoc[DocData].myUniqueFaces = new List<Doc>(); dashboardDoc[DocData].myTrails = DashboardView.SetupDashboardTrails(dashboardDoc); dashboardDoc[DocData].myCalendars = DashboardView.SetupDashboardCalendars(dashboardDoc); // open this new dashboard |
