1
0
mirror of https://github.com/bitwarden/web synced 2026-01-01 08:03:13 +00:00

[CL-38] Follow Angular styleguide naming convention (#1655)

This commit is contained in:
Oscar Hinton
2022-06-02 11:34:27 +02:00
committed by GitHub
parent b6b7298980
commit fb35805202
21 changed files with 57 additions and 73 deletions

View File

@@ -14,13 +14,13 @@
<div class="card border-danger">
<div class="card-body">
<p>{{ "dangerZoneDesc" | i18n }}</p>
<button bit-button buttonType="danger" (click)="deauthorizeSessions()">
<button bitButton buttonType="danger" (click)="deauthorizeSessions()">
{{ "deauthorizeSessions" | i18n }}
</button>
<button bit-button buttonType="danger" (click)="purgeVault()">
<button bitButton buttonType="danger" (click)="purgeVault()">
{{ "purgeVault" | i18n }}
</button>
<button bit-button buttonType="danger" (click)="deleteAccount()">
<button bitButton buttonType="danger" (click)="deleteAccount()">
{{ "deleteAccount" | i18n }}
</button>
</div>