Skip to content

Commit 59ecdf9

Browse files
authored
Fix for Angular build error
Fixes Property 'loading' does not exist on type 'ResetPasswordDialogComponent'
1 parent dfcd5fe commit 59ecdf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

angular/src/app/users/reset-password/reset-password.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ <h1 mat-dialog-title>{{ "ResetPassword" | localize }}</h1>
1818
</div>
1919
</mat-dialog-content>
2020
<div mat-dialog-actions align="end">
21-
<button mat-button type="button" [disabled]="loading" (click)="close()">
21+
<button mat-button type="button" [disabled]="isLoading" (click)="close(false)">
2222
{{ "Cancel" | localize }}
2323
</button>
24-
<button mat-flat-button type="submit" flex="15" color="primary" [disabled]="!resetPasswordModal.form.valid || loading">
24+
<button mat-flat-button type="submit" flex="15" color="primary" [disabled]="!resetPasswordModal.form.valid || isLoading">
2525
{{ "Save" | localize }}
2626
</button>
2727
</div>

0 commit comments

Comments
 (0)