From beca299f5dd14c330ecfa4eca7aae71b12167bc8 Mon Sep 17 00:00:00 2001 From: Nick Krantz Date: Thu, 22 Jan 2026 11:32:25 -0600 Subject: [PATCH] only show fix attachment issues for when key is null and it does not have a decryption failure --- .../attachments/cipher-attachments.component.html | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/libs/vault/src/cipher-form/components/attachments/cipher-attachments.component.html b/libs/vault/src/cipher-form/components/attachments/cipher-attachments.component.html index d5c65c01518..dd888e140cd 100644 --- a/libs/vault/src/cipher-form/components/attachments/cipher-attachments.component.html +++ b/libs/vault/src/cipher-form/components/attachments/cipher-attachments.component.html @@ -12,12 +12,13 @@ @if (!attachment.hasDecryptionError) { {{ attachment.sizeName }} } - + @if (!attachment.hasDecryptionError && attachment.key == null) { + + } @@ -28,7 +29,7 @@ [cipher]="cipher()" [attachment]="attachment" > - } @else { + } @else if (!attachment.hasDecryptionError) {