Skip to content

Commit

Permalink
account for possible null value (#11589)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaasen-livefront authored Oct 16, 2024
1 parent 8078946 commit 6e37047
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h2 class="tw-mt-4" bitTypography="h6">{{ "additionalOptions" | i18n }}</h2>
></button>
<bit-hint>{{ "sendPasswordDescV2" | i18n }}</bit-hint>
</bit-form-field>
<bit-form-control *ngIf="!disableHideEmail || originalSendView.hideEmail">
<bit-form-control *ngIf="!disableHideEmail || originalSendView?.hideEmail">
<input
[disabled]="disableHideEmail && !sendOptionsForm.get('hideEmail').value"
bitCheckbox
Expand Down

0 comments on commit 6e37047

Please sign in to comment.