Skip to content

[NAE-2051] Implement configurable view in menu items #266

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: release/6.5.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,6 @@ export class DoubleDrawerNavigationService implements OnDestroy {
let itemsWithView: Array<NavigationItem> = allItems.filter(item => DoubleDrawerUtils.hasItemView(item));
if (itemsWithView.length > 0) {
this._redirectService.redirect(autoOpenItems[0].routing.path);
return;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import {
ImpersonationUserSelectService,
ImpersonationService,
CaseResourceService,
RedirectService
RedirectService,
DoubleDrawerNavigationService
} from '@netgrif/components-core';
import {animate, state, style, transition, trigger} from "@angular/animations";
import {TranslateService} from "@ngx-translate/core";
import {DoubleDrawerNavigationService} from "@netgrif/components-core";

@Component({
selector: 'nc-navigation-double-drawer',
Expand Down
Loading