[PS-569] Fix sends having the inverse condition for disabled (#2675)

This commit is contained in:
Oscar Hinton 2022-05-10 23:02:25 +02:00 committed by GitHub
parent c260464f96
commit 894903cc02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@
type="button"
class="row-btn"
[ngClass]="{ disabled: disabledByPolicy }"
[attr.disabled]="!disabledByPolicy ? '' : null"
[attr.disabled]="disabledByPolicy ? '' : null"
appStopClick
appStopProp
appA11yTitle="{{ 'removePassword' | i18n }}"