From 60cac327c2abb0b0c94d949a2ca5a2a880701df7 Mon Sep 17 00:00:00 2001 From: Tim <50115603+bossenti@users.noreply.github.com> Date: Fri, 17 Nov 2023 15:02:32 +0100 Subject: [PATCH] refactor: remove legacy set reference (#2195) --- .../pipeline-element-options.component.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ui/src/app/editor/components/pipeline-element-options/pipeline-element-options.component.ts b/ui/src/app/editor/components/pipeline-element-options/pipeline-element-options.component.ts index b8e0478d1a..b409d77d52 100644 --- a/ui/src/app/editor/components/pipeline-element-options/pipeline-element-options.component.ts +++ b/ui/src/app/editor/components/pipeline-element-options/pipeline-element-options.component.ts @@ -131,9 +131,7 @@ export class PipelineElementOptionsComponent implements OnInit, OnDestroy { ); this.pipelineElementCssType = this.pipelineElement.type; - this.isDataSource = - this.pipelineElement.type === 'stream' || - this.pipelineElement.type === 'set'; + this.isDataSource = this.pipelineElement.type === 'stream'; if ( this.isDataSource ||