Add account-switcher to settings page

This commit is contained in:
Daniel James Smith 2024-05-17 13:19:26 +02:00
parent 16e2a81e00
commit cfc4efaf6a
No known key found for this signature in database
GPG Key ID: DA2E2EC600E1289B
2 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@
<popup-header slot="header" pageTitle="{{ 'settings' | i18n }}">
<ng-container slot="end">
<app-pop-out></app-pop-out>
<app-current-account></app-current-account>
</ng-container>
</popup-header>

View File

@ -5,6 +5,7 @@ import { RouterModule } from "@angular/router";
import { JslibModule } from "@bitwarden/angular/jslib.module";
import { ItemModule } from "@bitwarden/components";
import { CurrentAccountComponent } from "../../../auth/popup/account-switching/current-account.component";
import { PopOutComponent } from "../../../platform/popup/components/pop-out.component";
import { PopupHeaderComponent } from "../../../platform/popup/layout/popup-header.component";
import { PopupPageComponent } from "../../../platform/popup/layout/popup-page.component";
@ -20,6 +21,7 @@ import { PopupPageComponent } from "../../../platform/popup/layout/popup-page.co
PopupHeaderComponent,
PopOutComponent,
ItemModule,
CurrentAccountComponent,
],
})
export class SettingsV2Component {}