You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2022/08/23 14:34:43 UTC

[incubator-streampipes] branch STREAMPIPES-579 updated: [STREAMPIPES-579] Properly initialize dashboard model

This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch STREAMPIPES-579
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git


The following commit(s) were added to refs/heads/STREAMPIPES-579 by this push:
     new 057636404 [STREAMPIPES-579] Properly initialize dashboard model
057636404 is described below

commit 057636404c2c0ba51d95abdeca8c719d5ed85caf
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Tue Aug 23 16:34:31 2022 +0200

    [STREAMPIPES-579] Properly initialize dashboard model
---
 ui/src/app/dashboard/components/overview/dashboard-overview.component.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ui/src/app/dashboard/components/overview/dashboard-overview.component.ts b/ui/src/app/dashboard/components/overview/dashboard-overview.component.ts
index ce728dc8b..3d41f7000 100644
--- a/ui/src/app/dashboard/components/overview/dashboard-overview.component.ts
+++ b/ui/src/app/dashboard/components/overview/dashboard-overview.component.ts
@@ -77,6 +77,7 @@ export class DashboardOverviewComponent implements OnInit {
   openNewDashboardDialog() {
     const dashboard = {} as Dashboard;
     dashboard.widgets = [];
+    dashboard.dashboardGeneralSettings = {};
 
     this.openDashboardModificationDialog(true, dashboard);
   }