user load logs

This commit is contained in:
Timo Bejan 2022-03-16 12:55:22 +02:00
parent a06bf5f115
commit eae8340f27

View File

@ -31,7 +31,8 @@ export function configurationInitializer(
mergeMap(() => generalSettingsService.getGeneralConfigurations()), mergeMap(() => generalSettingsService.getGeneralConfigurations()),
tap(configuration => configService.updateDisplayName(configuration.displayName)), tap(configuration => configService.updateDisplayName(configuration.displayName)),
switchMap(() => userPreferenceService.reload()), switchMap(() => userPreferenceService.reload()),
catchError(() => { catchError(e => {
console.log('catch', e);
title.setTitle('RedactManager'); title.setTitle('RedactManager');
return of({}); return of({});
}), }),