mirror of
https://github.com/bitwarden/browser
synced 2025-12-28 14:13:22 +00:00
* update attachments v2 view. using download attachment component. remove excess code. Refactor location of attachments v2
23 lines
746 B
HTML
23 lines
746 B
HTML
<bit-section>
|
|
<bit-section-header>
|
|
<h2 bitTypography="h6">{{ "attachments" | i18n }}</h2>
|
|
</bit-section-header>
|
|
<bit-item-group>
|
|
<bit-item *ngFor="let attachment of cipher.attachments">
|
|
<bit-item-content>
|
|
<span data-testid="file-name">{{ attachment.fileName }}</span>
|
|
<span slot="secondary" data-testid="file-size">{{ attachment.sizeName }}</span>
|
|
</bit-item-content>
|
|
<ng-container slot="end">
|
|
<bit-item-action>
|
|
<app-download-attachment
|
|
[cipher]="cipher"
|
|
[attachment]="attachment"
|
|
[checkPwReprompt]="true"
|
|
></app-download-attachment>
|
|
</bit-item-action>
|
|
</ng-container>
|
|
</bit-item>
|
|
</bit-item-group>
|
|
</bit-section>
|