-
ABP Framework version: v4.4.0
-
UI type: Angular
-
DB provider: EF Core
-
Tiered (MVC) or Identity Server Separated (Angular): yes
-
Exception message and stack trace:
-
Steps to reproduce the issue:
Hi all
I want to hide Linked account,My account, Security log in nav item. How can I do that?
6 Answer(s)
-
0
Hello,
You can replace nav-items by following the instructions listed in the docs
Instead of
import { eThemeBasicComponents } from '@abp/ng.theme.basic';
use the following the enum
import { eThemeLeptonComponents } from @volo/abp.ng.theme.lepton;
and use
eThemeLeptonComponents.NavItems
to replace the nav items. -
0
Hello,
You can replace nav-items by following the instructions listed in the docs
Instead of
import { eThemeBasicComponents } from '@abp/ng.theme.basic';
use the following the enum
import { eThemeLeptonComponents } from @volo/abp.ng.theme.lepton;
and use
eThemeLeptonComponents.NavItems
to replace the nav items.I have tried this but when click admin it doesn't show anything
-
0
Could you share the code of
NavItemsComponent
? Bothhtml
andts
files. -
0
Could you share the code of
NavItemsComponent
? Bothhtml
andts
files.I just copy code from html and ts file in your document
-
0
It seems that
ngbDropdownMenu
directive is missing from<div class="dropdown-menu">
. If you add it, it should open. -
0
thanks bunyamin! It's worked