bitwarden-estensione-browser/bitwarden_license/bit-web/src/app/secrets-manager/layout/dialogs/bulk-status-dialog.componen...

34 lines
944 B
HTML

<bit-dialog dialogSize="default">
<ng-container bitDialogTitle>
<span>{{ data.title | i18n }}</span>
<span class="tw-text-sm tw-normal-case tw-text-muted">
{{ data.details.length }}
{{ data.subTitle | i18n }}
</span>
</ng-container>
<div bitDialogContent>
{{ data.message | i18n }}
<bit-table>
<ng-container header>
<tr>
<th bitCell>{{ data.columnTitle | i18n }}</th>
<th bitCell>{{ "error" | i18n }}</th>
</tr>
</ng-container>
<ng-container body>
<tr bitRow *ngFor="let detail of data.details">
<td bitCell>{{ detail.name }}</td>
<td bitCell>{{ detail.errorMessage }}</td>
</tr>
</ng-container>
</bit-table>
</div>
<div bitDialogFooter class="tw-flex tw-gap-2">
<button bitButton buttonType="primary" bitDialogClose type="button">
{{ "close" | i18n }}
</button>
</div>
</bit-dialog>