fix logic for displaying hide email in send options (#11561)
This commit is contained in:
parent
1eaa80de26
commit
87545e4d21
|
@ -43,8 +43,13 @@
|
||||||
></button>
|
></button>
|
||||||
<bit-hint>{{ "sendPasswordDescV2" | i18n }}</bit-hint>
|
<bit-hint>{{ "sendPasswordDescV2" | i18n }}</bit-hint>
|
||||||
</bit-form-field>
|
</bit-form-field>
|
||||||
<bit-form-control *ngIf="!disableHideEmail">
|
<bit-form-control *ngIf="!disableHideEmail || originalSendView.hideEmail">
|
||||||
<input bitCheckbox type="checkbox" formControlName="hideEmail" />
|
<input
|
||||||
|
[disabled]="disableHideEmail && !sendOptionsForm.get('hideEmail').value"
|
||||||
|
bitCheckbox
|
||||||
|
type="checkbox"
|
||||||
|
formControlName="hideEmail"
|
||||||
|
/>
|
||||||
<bit-label>{{ "hideYourEmail" | i18n }}</bit-label>
|
<bit-label>{{ "hideYourEmail" | i18n }}</bit-label>
|
||||||
</bit-form-control>
|
</bit-form-control>
|
||||||
<bit-form-field disableMargin>
|
<bit-form-field disableMargin>
|
||||||
|
|
Loading…
Reference in New Issue