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/06/04 10:00:05 UTC

[incubator-streampipes] branch dev updated: [hotfix] Fix issue where force stop button appeared with empty text

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 1af6ed8  [hotfix] Fix issue where force stop button appeared with empty text
1af6ed8 is described below

commit 1af6ed825631439425125ee4cbf0f9ce346c8dd7
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Fri Jun 4 11:59:50 2021 +0200

    [hotfix] Fix issue where force stop button appeared with empty text
---
 .../dialog/pipeline-status/pipeline-status-dialog.component.html        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/app/pipelines/dialog/pipeline-status/pipeline-status-dialog.component.html b/ui/src/app/pipelines/dialog/pipeline-status/pipeline-status-dialog.component.html
index 6a05325..556182d 100644
--- a/ui/src/app/pipelines/dialog/pipeline-status/pipeline-status-dialog.component.html
+++ b/ui/src/app/pipelines/dialog/pipeline-status/pipeline-status-dialog.component.html
@@ -52,7 +52,7 @@
                     <div *ngIf="statusDetailsVisible">Hide Details</div>
                 </button>
                 <button mat-button mat-raised-button class="ml-10" color="primary" (click)="forceStopPipeline()" *ngIf="action == 1 && !pipelineOperationStatus.success">
-                    <div *ngIf="!statusDetailsVisible">Force stop</div>
+                    <div>Force stop</div>
                 </button>
             </div>