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/06/05 14:50:01 UTC

[incubator-streampipes] branch dev updated: [STREAMPIPES-539] Properly initialize new data view

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

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


The following commit(s) were added to refs/heads/dev by this push:
     new 09dd9aa75 [STREAMPIPES-539] Properly initialize new data view
09dd9aa75 is described below

commit 09dd9aa75279b69b3b9d43dd8d96e8c822a9e66f
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Sun Jun 5 16:49:54 2022 +0200

    [STREAMPIPES-539] Properly initialize new data view
---
 .../components/overview/data-explorer-dashboard-overview.component.ts    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ui/src/app/data-explorer/components/overview/data-explorer-dashboard-overview.component.ts b/ui/src/app/data-explorer/components/overview/data-explorer-dashboard-overview.component.ts
index 8e38a01c1..feaa1b683 100644
--- a/ui/src/app/data-explorer/components/overview/data-explorer-dashboard-overview.component.ts
+++ b/ui/src/app/data-explorer/components/overview/data-explorer-dashboard-overview.component.ts
@@ -70,6 +70,7 @@ export class DataExplorerDashboardOverviewComponent implements OnInit {
 
   openNewDataViewDialog() {
     const dataViewDashboard: Dashboard = {};
+    dataViewDashboard.dashboardGeneralSettings = {};
     dataViewDashboard.widgets = [];
 
     this.openDataViewModificationDialog(true, dataViewDashboard);