diff --git a/apps/browser/src/vault/popup/settings/archive.component.html b/apps/browser/src/vault/popup/settings/archive.component.html index 8c5f2b60220..cd80673b2fd 100644 --- a/apps/browser/src/vault/popup/settings/archive.component.html +++ b/apps/browser/src/vault/popup/settings/archive.component.html @@ -14,60 +14,59 @@ {{ archivedItems.length }} - - - - @for (cipher of archivedItems; track cipher.id) { - - - + + @for (cipher of archivedItems; track cipher.id) { + - - - - + [appA11yTitle]="'viewItemTitle' | i18n: cipher.name" + (click)="view(cipher)" + > +
+ +
+ {{ cipher.name }} + @if (cipher.hasAttachments) { + + } + {{ cipher.subTitle }} + + -
-
-
- } -
+ bitIconButton="bwi-ellipsis-v" + size="small" + [attr.aria-label]="'moreOptionsLabel' | i18n: cipher.name" + [title]="'moreOptionsTitle' | i18n: cipher.name" + [bitMenuTriggerFor]="moreOptions" + > + + + + + + + + + } + + } @else { diff --git a/libs/common/src/vault/services/cipher.service.ts b/libs/common/src/vault/services/cipher.service.ts index 08608f3121d..581b8c39c39 100644 --- a/libs/common/src/vault/services/cipher.service.ts +++ b/libs/common/src/vault/services/cipher.service.ts @@ -224,6 +224,7 @@ export class CipherService implements CipherServiceAbstraction { cipher.type = model.type; cipher.collectionIds = model.collectionIds; cipher.revisionDate = model.revisionDate; + cipher.archivedDate = model.archivedDate; cipher.reprompt = model.reprompt; cipher.edit = model.edit;