mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 23:33:31 +00:00
23 lines
684 B
HTML
23 lines
684 B
HTML
<bit-item *ngFor="let credential of credentials$ | async">
|
|
<bit-item-content>
|
|
<bit-color-password class="tw-font-mono" [password]="credential.credential" />
|
|
<div slot="secondary">
|
|
{{ credential.generationDate | date: "medium" }}
|
|
</div>
|
|
</bit-item-content>
|
|
<ng-container slot="end">
|
|
<bit-item-action>
|
|
<button
|
|
type="button"
|
|
bitIconButton="bwi-clone"
|
|
[appCopyClick]="credential.credential"
|
|
[valueLabel]="getGeneratedValueText(credential)"
|
|
[appA11yTitle]="getCopyText(credential)"
|
|
showToast
|
|
>
|
|
{{ getCopyText(credential) }}
|
|
</button>
|
|
</bit-item-action>
|
|
</ng-container>
|
|
</bit-item>
|