bug fix
This commit is contained in:
parent
eaa802872a
commit
72d2728474
|
@ -118,7 +118,8 @@ export function InstallationConfigurationFactory(appConfig: ConfigurationService
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@NgModule({ declarations: [
|
@NgModule({
|
||||||
|
declarations: [
|
||||||
AppComponent,
|
AppComponent,
|
||||||
ReloadHelperComponent
|
ReloadHelperComponent
|
||||||
],
|
],
|
||||||
|
@ -160,7 +161,7 @@ export function InstallationConfigurationFactory(appConfig: ConfigurationService
|
||||||
{
|
{
|
||||||
provide: APP_INITIALIZER,
|
provide: APP_INITIALIZER,
|
||||||
useFactory: InstallationConfigurationFactory,
|
useFactory: InstallationConfigurationFactory,
|
||||||
deps: [ConfigurationService, KeycloakService, AuthService, LanguageService],
|
deps: [ConfigurationService, KeycloakService, AuthService, LanguageService, TenantHandlingService],
|
||||||
multi: true
|
multi: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -184,5 +185,6 @@ export function InstallationConfigurationFactory(appConfig: ConfigurationService
|
||||||
MatomoService,
|
MatomoService,
|
||||||
AnalyticsService,
|
AnalyticsService,
|
||||||
provideHttpClient(withInterceptorsFromDi())
|
provideHttpClient(withInterceptorsFromDi())
|
||||||
] })
|
]
|
||||||
|
})
|
||||||
export class AppModule { }
|
export class AppModule { }
|
||||||
|
|
Loading…
Reference in New Issue