diff options
| author | Jenny Yu <jennyyu212@outlook.com> | 2022-06-13 09:19:24 -0700 |
|---|---|---|
| committer | Jenny Yu <jennyyu212@outlook.com> | 2022-06-13 09:19:24 -0700 |
| commit | 576e5d1832349ffcf6d64367fa0c35f96e222fe4 (patch) | |
| tree | 92ae8af72cb26871851a0f23649e9a8e4d4af6c5 /src/client/views/DashboardView.tsx | |
| parent | 95d0f3f9b341020c742cf0df8402a564cc7c5dec (diff) | |
fix: separation between my dashboard and shared dashboards
Diffstat (limited to 'src/client/views/DashboardView.tsx')
| -rw-r--r-- | src/client/views/DashboardView.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/views/DashboardView.tsx b/src/client/views/DashboardView.tsx index e48c1bde1..5aacec61f 100644 --- a/src/client/views/DashboardView.tsx +++ b/src/client/views/DashboardView.tsx @@ -42,10 +42,9 @@ export class DashboardView extends React.Component { getDashboards = () => { const allDashboards = DocListCast(CurrentUserUtils.MyDashboards.data); if (this.selectedDashboardGroup === DashboardGroup.MyDashboards) { - return allDashboards.filter((dashboard) => dashboard.author === Doc.CurrentUserEmail) + return allDashboards.filter((dashboard) => Doc.GetProto(dashboard).author === Doc.CurrentUserEmail) } else { - allDashboards.map(d => console.log(d.author)) - return allDashboards.filter((dashboard) => dashboard.author !== Doc.CurrentUserEmail) + return allDashboards.filter((dashboard) => Doc.GetProto(dashboard).author !== Doc.CurrentUserEmail) } } |
