Added typedoc and minor test update

This commit is contained in:
Michael W Spalti
2023-04-19 11:36:42 -07:00
parent e336660cdd
commit b1f3b785e1
5 changed files with 17 additions and 6 deletions

View File

@@ -56,7 +56,7 @@ export class BrowserInitService extends InitService {
protected authService: AuthService,
protected themeService: ThemeService,
protected menuService: MenuService,
private rootDatatService: RootDataService
private rootDataService: RootDataService
) {
super(
store,
@@ -153,7 +153,7 @@ export class BrowserInitService extends InitService {
filter((externalAuth: boolean) => externalAuth)
).subscribe(() => {
// Clear the transferState data.
this.rootDatatService.invalidateRootCache();
this.rootDataService.invalidateRootCache();
this.authService.setExternalAuthStatus(false);
}
);