- ABP Framework version: v8.1
- UI Type: Angular
- Database System: EF Core (SQL Server)
- Tiered (for MVC) or Auth Server Separated (for Angular): yes
- 
- Exception message and full stack trace: -
 
- Steps to reproduce the issue:
We have a route.provider
@Injectable({
    providedIn: 'root',
})
export class RouteManagerService implements OnDestroy {
    private destroyed$ = new Subject<void>();
    constructor(
        private routes: RoutesService,
        private cubeSelectedService: CubeSelectedService,
    ) {}
    configureRoutes() {
        const initialRoutes: ABP.Route[] = [
            {
                path: '/overview',
                iconClass: 'fa-solid fa-grid-2',
                name: '::Menu:CustomerDashboard:Overview',
                group: 'Dashboard',
                layout: eLayoutType.application,
                requiredPolicy: 'Portal.CustomerDashboard',
                order: 0,
                invisible: true,
            },
        ];
        this.routes.add(initialRoutes);
        this.cubeSelectedService
            .getObservable()
            .pipe(
                takeUntil(this.destroyed$),
                map((cubeSelected) => {
                    this.updateRouteVisibility(
                        '::Menu:CustomerDashboard:Overview',
                        cubeSelected === null,
                    );
                }),
            )
            .subscribe();
    }
    updateRouteVisibility(name: string, invisible: boolean) {
        const route = this.routes.find((route) => route.name === name);
        if (route) {
            this.routes.patch(name, {
                iconClass: invisible ? 'fas fa-home' : 'fas fa-heart',
                invisible,
            } as Partial<ABP.Route>);
        }
    }
    ngOnDestroy() {
        this.destroyed$.next();
        this.destroyed$.complete();
    }
}
export const ROUTE_PROVIDER = [
    {
        provide: APP_INITIALIZER,
        useFactory: configureRoutes,
        deps: [RouteManagerService],
        multi: true,
    },
];
function configureRoutes(routeManager: RouteManagerService) {
    return () => routeManager.configureRoutes();
}
We need to hide and show a menu item "::Menu:CustomerDashboard:Overview" in the observable depending on the value coming. Setting invisible attribute in a patch from true->false works, from false-> true doesn't. Though the iconClass works in both ways.
Could you please help us to solve it? If this is an ABP issue or do we do something wrong? Thank you.
9 Answer(s)
- 
    0It might be the reason that menu item belongs to a Dashboard group, whenever there are more items in the group while patching them with invisible status = true, all but the last one in the group are hidden (though the route for the last one is marked as invisible). 
- 
    0Hi alina, Have you tried without group to toggle visiblity for Menu:CustomerDashboard:Overview menu item ? In that way we can get more detail 
- 
    0Hi masum.ulu, Thank you for your response. I've removed the group - it works as expected - while toggling invisible property. But we still need a group. 
- 
    0Hi again, okay I'll try to produce with group and fix it. 
- 
    0I reopened the question. If you still have this issue please inform us 
- 
    0Thank you, alper! 
- 
    0masum.ulu, could you reproduce the issue? we updated the UI to the latest ABP version 8.2 and it's still reproducible. 
- 
    0Hi alina, I've produced this problem, I'll create an internal issue i'll fix it ASAP. Yet currently seems like it'll solved in 9.0.x version 
- 
    0hi masum.ulu, thank you! will be waiting for the updates. regards! 
 
                                