mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-07 21:10:55 +08:00
handle undefined custom field values (#19676)
This commit is contained in:
parent
c017802c92
commit
fc06f386c4
@ -14,7 +14,7 @@
|
||||
<textarea
|
||||
readonly
|
||||
bitInput
|
||||
[value]="field.value"
|
||||
[value]="field.value ?? ''"
|
||||
aria-readonly="true"
|
||||
vaultAutosizeReadOnlyTextArea
|
||||
></textarea>
|
||||
@ -35,7 +35,7 @@
|
||||
readonly
|
||||
bitInput
|
||||
type="password"
|
||||
[value]="field.value"
|
||||
[value]="field.value ?? ''"
|
||||
aria-readonly="true"
|
||||
class="tw-font-mono"
|
||||
*ngIf="!revealedHiddenFields.includes(i)"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user