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 2021/12/01 10:23:46 UTC

[incubator-streampipes] branch dev updated: [hotfix] Reset filter when pipeline element type selection changes

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 ef31557  [hotfix] Reset filter when pipeline element type selection changes
ef31557 is described below

commit ef315577de7246e4d1ab48590125cb97b8a1c26b
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Wed Dec 1 11:23:27 2021 +0100

    [hotfix] Reset filter when pipeline element type selection changes
---
 .../pipeline-element-icon-stand.component.ts                           | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ui/src/app/editor/components/pipeline-element-icon-stand/pipeline-element-icon-stand.component.ts b/ui/src/app/editor/components/pipeline-element-icon-stand/pipeline-element-icon-stand.component.ts
index d068d49..866ffa0 100644
--- a/ui/src/app/editor/components/pipeline-element-icon-stand/pipeline-element-icon-stand.component.ts
+++ b/ui/src/app/editor/components/pipeline-element-icon-stand/pipeline-element-icon-stand.component.ts
@@ -145,6 +145,7 @@ export class PipelineElementIconStandComponent implements OnInit {
     @Input()
     set currentElements(value: PipelineElementUnion[]) {
         this._currentElements = value;
+        this.elementFilter = "";
         this.currentlyFilteredElements = this._currentElements;
     }
 
@@ -173,4 +174,4 @@ export class PipelineElementIconStandComponent implements OnInit {
        });
     };
 
-}
\ No newline at end of file
+}