Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ <h3 mat-dialog-title>{{'Assign site' | translate}}</h3>
</mat-form-field>
</div>
<div mat-dialog-actions class="d-flex flex-row justify-content-end">
<button
class="btn-cancel"
id="siteAssignBtnSaveCancel"
(click)="hide()"
>
{{'Cancel' | translate}}
</button>
<button
class="btn-primary"
id="siteAssignBtnSave"
Expand All @@ -21,11 +28,4 @@ <h3 mat-dialog-title>{{'Assign site' | translate}}</h3>
>
{{'Assign' | translate}}
</button>
<button
class="btn-cancel"
id="siteAssignBtnSaveCancel"
(click)="hide()"
>
{{'Cancel' | translate}}
</button>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ <h6>{{'Site Uid' | translate}}</h6>
</div>
</div>
<div class="modal-footer">
<button class="btn-delete" (click)="removeSite()" id="removeSiteSaveBtn">
{{ 'Remove' | translate }}
</button>
<button class="btn-cancel" (click)="frame.hide()" id="removeSiteSaveCancelBtn">
{{ 'Cancel' | translate }}
</button>
<button class="btn-delete" (click)="removeSite()" id="removeSiteSaveBtn">
{{ 'Remove' | translate }}
</button>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ <h3 mat-dialog-title>{{'Are you sure you want to delete' | translate}}?</h3>
</div>
</div>
<div mat-dialog-actions class="d-flex flex-row justify-content-end">
<button
class="btn-delete"
id="workflowCaseDeleteDeleteBtn"
(click)="deleteWorkflowCase()"
>
{{'Delete' | translate}}
</button>
<button
class="btn-cancel"
id="workflowCaseDeleteCancelBtn"
(click)="hide()"
>
{{'Cancel' | translate}}
</button>
<button
class="btn-delete"
id="workflowCaseDeleteDeleteBtn"
(click)="deleteWorkflowCase()"
>
{{'Delete' | translate}}
</button>
</div>
Loading