1
0
mirror of https://github.com/bitwarden/web synced 2025-12-31 07:33:39 +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

@@ -46,7 +46,7 @@
<bit-menu #orgPickerMenu>
<ul aria-labelledby="pickerButton" class="tw-p-0 tw-m-0">
<li *ngFor="let org of organizations" class="tw-list-none tw-flex tw-flex-col" role="none">
<a bit-menu-item [routerLink]="['/organizations', org.id]">
<a bitMenuItem [routerLink]="['/organizations', org.id]">
<i
class="bwi bwi-check mr-2"
[ngClass]="org.id === activeOrganization.id ? 'visible' : 'invisible'"
@@ -58,7 +58,7 @@
</li>
<bit-menu-divider></bit-menu-divider>
<li class="tw-list-none" role="none">
<a bit-menu-item routerLink="/create-organization">
<a bitMenuItem routerLink="/create-organization">
<i class="bwi bwi-plus mr-2"></i>
{{ "newOrganization" | i18n }}</a
>