From 27641279b4671342e5c56917cb7ec2ea62c440ba Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Fri, 29 Apr 2022 16:10:03 +0200 Subject: [PATCH] Update dashboard.ts --- frontend/app/mstore/types/dashboard.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/app/mstore/types/dashboard.ts b/frontend/app/mstore/types/dashboard.ts index b6a8dd330..c4ee376c6 100644 --- a/frontend/app/mstore/types/dashboard.ts +++ b/frontend/app/mstore/types/dashboard.ts @@ -97,6 +97,7 @@ export default class Dashboard implements IDashboard { runInAction(() => { this.dashboardId = json.dashboardId this.name = json.name + this.description = json.description this.isPublic = json.isPublic this.isPinned = json.isPinned this.widgets = json.widgets ? json.widgets.map(w => new Widget().fromJson(w)).sort((a, b) => a.position - b.position) : []