Fix issue with onClick models in dso edit menus

This commit is contained in:
Yana De Pauw
2022-12-06 16:20:21 +01:00
parent ca864379c8
commit d185630faa
10 changed files with 250 additions and 276 deletions

View File

@@ -29,6 +29,7 @@ import { coreSelector } from '../../app/core/core.selectors';
import { find, map } from 'rxjs/operators';
import { isNotEmpty } from '../../app/shared/empty.util';
import { logStartupMessage } from '../../../startup-message';
import { MenuService } from '../../app/shared/menu/menu.service';
/**
* Performs client-side initialization.
@@ -49,6 +50,7 @@ export class BrowserInitService extends InitService {
protected klaroService: KlaroService,
protected authService: AuthService,
protected themeService: ThemeService,
protected menuService: MenuService,
) {
super(
store,
@@ -60,6 +62,7 @@ export class BrowserInitService extends InitService {
metadata,
breadcrumbsService,
themeService,
menuService,
);
}