1
0
mirror of https://github.com/bitwarden/web synced 2025-12-15 15:53:18 +00:00

re-set favicon state on login/unlock

This commit is contained in:
Kyle Spearrin
2019-07-02 08:44:29 -04:00
parent d25dc1a23f
commit 0aa664fb4f
5 changed files with 17 additions and 9 deletions

View File

@@ -19,9 +19,9 @@ import { LoginComponent as BaseLoginComponent } from 'jslib/angular/components/l
export class LoginComponent extends BaseLoginComponent {
constructor(authService: AuthService, router: Router,
i18nService: I18nService, private route: ActivatedRoute,
storageService: StorageService, private stateService: StateService,
storageService: StorageService, stateService: StateService,
platformUtilsService: PlatformUtilsService) {
super(authService, router, platformUtilsService, i18nService, storageService);
super(authService, router, platformUtilsService, i18nService, storageService, stateService);
this.onSuccessfulLoginNavigate = this.goAfterLogIn;
}