1
0
mirror of https://github.com/bitwarden/web synced 2025-12-26 13:13:24 +00:00

Minor UI improvements

This commit is contained in:
Thomas Rittson
2021-03-23 14:48:58 +10:00
parent 8d1908ba3b
commit 0952f6c786

View File

@@ -152,7 +152,8 @@
<label>{{'disabledSendType' | i18n}}</label>
<div class="form-check" *ngFor="let o of disableSendPolicyOptions">
<input class="form-check-input" type="radio" [(ngModel)]="disableSend" name="Type_{{o.value}}"
id="type_{{o.value}}" [value]="o.value" [checked]="disableSend === o.value">
id="type_{{o.value}}" [value]="o.value" [checked]="disableSend === o.value"
[disabled]="!enabled">
<label class="form-check-label" for="type_{{o.value}}">
{{o.name}}
</label>