mirror of
https://github.com/bitwarden/browser
synced 2026-02-04 10:43:47 +00:00
* Migrate generators to use standalone and control flow * Resolve feedback * Add variable for account * Fix generators
25 lines
737 B
HTML
25 lines
737 B
HTML
@for (credential of credentials$ | async; track credential) {
|
|
<bit-item>
|
|
<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)"
|
|
[label]="getCopyText(credential)"
|
|
showToast
|
|
>
|
|
{{ getCopyText(credential) }}
|
|
</button>
|
|
</bit-item-action>
|
|
</ng-container>
|
|
</bit-item>
|
|
}
|