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/05/20 08:56:25 UTC

[incubator-streampipes] 01/02: [hotfix] Fix bug that prevented pipeline cached to be deleted

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

commit 6c913400918f82c581f17ba47e411a6351ec150d
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Wed May 19 23:10:06 2021 +0200

    [hotfix] Fix bug that prevented pipeline cached to be deleted
---
 .../components/pipeline-assembly/pipeline-assembly.component.ts    | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/ui/src/app/editor/components/pipeline-assembly/pipeline-assembly.component.ts b/ui/src/app/editor/components/pipeline-assembly/pipeline-assembly.component.ts
index d4a0f68..e78ee18 100644
--- a/ui/src/app/editor/components/pipeline-assembly/pipeline-assembly.component.ts
+++ b/ui/src/app/editor/components/pipeline-assembly/pipeline-assembly.component.ts
@@ -197,13 +197,6 @@ export class PipelineAssemblyComponent implements OnInit {
         //$('#assembly').children().not('#clear, #submit').remove();
         this.JsplumbBridge.deleteEveryEndpoint();
         this.rawPipelineModel = [];
-        ($("#assembly") as any).panzoom("reset", {
-            disablePan: true,
-            increment: 0.25,
-            minScale: 0.5,
-            maxScale: 1.5,
-            contain: 'invert'
-        });
         this.currentZoomLevel = 1;
         this.JsplumbBridge.setZoom(this.currentZoomLevel);
         this.JsplumbBridge.repaintEverything();