From fc06f386c4aab105be71ddccc57b66a189e79f07 Mon Sep 17 00:00:00 2001 From: Jordan Aasen <166539328+jaasen-livefront@users.noreply.github.com> Date: Wed, 8 Apr 2026 13:26:08 -0700 Subject: [PATCH] handle undefined custom field values (#19676) --- .../cipher-view/custom-fields/custom-fields-v2.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/vault/src/cipher-view/custom-fields/custom-fields-v2.component.html b/libs/vault/src/cipher-view/custom-fields/custom-fields-v2.component.html index bc59c9058e2..730295b983b 100644 --- a/libs/vault/src/cipher-view/custom-fields/custom-fields-v2.component.html +++ b/libs/vault/src/cipher-view/custom-fields/custom-fields-v2.component.html @@ -14,7 +14,7 @@ @@ -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)"