1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-18 10:23:52 +00:00

[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

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 }}"