mirror of
https://github.com/bitwarden/browser
synced 2026-02-09 05:00:10 +00:00
25 lines
884 B
HTML
25 lines
884 B
HTML
<section class="tw-mb-5 bit-compact:tw-mb-4">
|
|
<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" [title]="attachment.fileName">{{ 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
|
|
[admin]="admin"
|
|
[cipher]="cipher"
|
|
[attachment]="attachment"
|
|
[checkPwReprompt]="true"
|
|
[emergencyAccessId]="emergencyAccessId"
|
|
></app-download-attachment>
|
|
</bit-item-action>
|
|
</ng-container>
|
|
</bit-item>
|
|
</bit-item-group>
|
|
</section>
|