Hangfire.Dashboard.Management
Hangfire.Dashboard.Management copied to clipboard
Menu Option not shown
With the .UseManagementPages on the globalconfiguration, I can't see Management on the dashboard top menu. I can only acces through the button on recurring jobs.
Hello, @agausachs I have a same problem. Did you find a solution? Thank you in advance
Nope. ☹️
Just in case for those, who also might be with this kind of difficulties, my advice is to use this version of Hangfire.Dashboard.Management
@agausachs you just need to add this code (when doing initialization) to make it visible:
NavigationMenu.Items.Add(page => new MenuItem("Management", page.Url.To("/management")) { Active = page.RequestPath.StartsWith("/management") });
Somehow this code is commented in source....