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/05/29 19:14:35 UTC

[incubator-streampipes] branch dev updated: [hotfix] Activate edit button if edit mode is on

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 32fec1768 [hotfix] Activate edit button if edit mode is on
32fec1768 is described below

commit 32fec17681d4c33ada711f5edb19e90d62efd4c0
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Sun May 29 21:14:28 2022 +0200

    [hotfix] Activate edit button if edit mode is on
---
 .../components/panel/data-explorer-dashboard-panel.component.ts          | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ui/src/app/data-explorer/components/panel/data-explorer-dashboard-panel.component.ts b/ui/src/app/data-explorer/components/panel/data-explorer-dashboard-panel.component.ts
index da4c5e49d..209542b93 100644
--- a/ui/src/app/data-explorer/components/panel/data-explorer-dashboard-panel.component.ts
+++ b/ui/src/app/data-explorer/components/panel/data-explorer-dashboard-panel.component.ts
@@ -183,6 +183,7 @@ export class DataExplorerDashboardPanelComponent implements OnInit {
   }
 
   startEditMode(widgetModel: DataExplorerWidgetModel) {
+    this.editMode = true;
     this.editModeChange.emit(true);
     this.updateCurrentlyConfiguredWidget(widgetModel);
   }