diff --git a/webapp/src/components/vault/vault-page-helpers.tsx b/webapp/src/components/vault/vault-page-helpers.tsx index 20fa79c..301895d 100644 --- a/webapp/src/components/vault/vault-page-helpers.tsx +++ b/webapp/src/components/vault/vault-page-helpers.tsx @@ -326,7 +326,7 @@ export function buildCipherDuplicateSignature(cipher: Cipher): string { linkedId: field.linkedId ?? null, })), passwordHistory: (cipher.passwordHistory || []).map((entry) => ({ - password: valueOrFallback(entry.password), + password: valueOrFallback(entry.decPassword ?? entry.password), lastUsedDate: valueOrFallback(entry.lastUsedDate), })), };