Skip to content

Commit be9ad5e

Browse files
committed
Adding the missing ids.
1 parent 9c172e6 commit be9ad5e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

eform-client/src/app/plugins/modules/backend-configuration-pn/components/properties/property-actions/property-create-modal/property-create-modal.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ <h3 mat-dialog-title>{{ 'New property' | translate }}</h3>
3636
</div>
3737

3838
<div mat-dialog-actions class="d-flex flex-row justify-content-end">
39-
<button mat-raised-button color="accent" (click)="onCreateProperty()" [disabled]="isDisabledSaveButton">
39+
<button mat-raised-button color="accent" (click)="onCreateProperty()" [disabled]="isDisabledSaveButton" id="propertyCreateSaveBtn">
4040
{{'Save' | translate}}
4141
</button>
42-
<button mat-raised-button (click)="hide()">
42+
<button mat-raised-button (click)="hide()" id="propertyCreateSaveCancelBtn">
4343
{{'Cancel' | translate}}
4444
</button>
4545
</div>

eform-client/src/app/plugins/modules/backend-configuration-pn/components/properties/property-actions/property-edit-modal/property-edit-modal.component.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,14 @@ <h3 mat-dialog-title>{{ 'Edit property' | translate }}</h3>
6767
color="accent"
6868
(click)="onUpdateProperty()"
6969
[disabled]="isDisabledSaveButton"
70+
id="propertyEditSaveBtn"
7071
>
7172
{{ 'Save' | translate }}
7273
</button>
7374
<button
7475
mat-raised-button
7576
(click)="hide()"
77+
id="propertyEditSaveCancelBtn"
7678
>
7779
{{ 'Cancel' | translate }}
7880
</button>

0 commit comments

Comments
 (0)