Skip to content

Commit

Permalink
DOCK-2137: fix checker workflow field refresh issue (#1998)
Browse files Browse the repository at this point in the history
* fix checker workflow field

* review
  • Loading branch information
hyunnaye authored Aug 7, 2024
1 parent 7c7ce9b commit 28679d3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<li *ngIf="((checkerId$ | async) || (canAdd$ | async)) && (isRefreshing$ | async) === false">
<li *ngIf="(checkerId$ | async) || (canAdd$ | async)">
<form #editCheckerWorkflowPathForm="ngForm" class="form-inline">
<div class="form-group" fxFlex="noshrink" fxLayout fxLayoutAlign=" center">
<strong matTooltip="Checker workflow of this tool/workflow that tests it">Checker Workflow</strong>:
Expand All @@ -15,7 +15,7 @@
>
<mat-icon class="mat-icon-sm">visibility</mat-icon> View
</a>
<span *ngIf="(isPublic$ | async) === false">
<span *ngIf="(isPublic$ | async) === false && (isRefreshing$ | async) === false">
<button
id="addCheckerWorkflowButton"
#addCheckerWorkflowButton
Expand Down

0 comments on commit 28679d3

Please sign in to comment.