mirror of
https://github.com/bitwarden/browser
synced 2025-12-24 04:04:24 +00:00
* Added button type to each button element related to the vault team * Removed disable statement comment * [PM-1399] Resolve eslint errors for button type - admin-console (#5275) * Added button type to each button element related to the admin console team * Added button type to each button element related to the billing team * Removed disable statement comment * [PM-1399] Resolve eslint errors for button type - tools (#5284) * Added button type to each button element related to the tools team * Added button type to each button element related to the tools team * Added button type to each button element related to the auth team (#5295)
19 lines
605 B
HTML
19 lines
605 B
HTML
<app-change-kdf *ngIf="showChangeKdf"></app-change-kdf>
|
|
<div
|
|
[ngClass]="{ 'tabbed-header': !showChangeKdf, 'secondary-header': showChangeKdf }"
|
|
class="border-0 mb-0"
|
|
>
|
|
<h1>{{ "apiKey" | i18n }}</h1>
|
|
</div>
|
|
<p>
|
|
{{ "userApiKeyDesc" | i18n }}
|
|
</p>
|
|
<button type="button" bitButton buttonType="secondary" (click)="viewUserApiKey()">
|
|
{{ "viewApiKey" | i18n }}
|
|
</button>
|
|
<button type="button" bitButton buttonType="secondary" (click)="rotateUserApiKey()">
|
|
{{ "rotateApiKey" | i18n }}
|
|
</button>
|
|
<ng-template #viewUserApiKeyTemplate></ng-template>
|
|
<ng-template #rotateUserApiKeyTemplate></ng-template>
|