You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Anytime I click from one of those dashboards links to any other item in the menu, the menu state doesn't change. This is limited to just these two dashboards... If I remove the NovaDashboard card from each dashboard, the issue resolves itself, so I figured it something to do with NovaDashboard,
Ex dashboard
class Demographics extends Dashboard
{
public function name()
{
return 'Demographics';
}
public function cards()
{
return [
NovaDashboard::make()
->addView('Demographics Filters', function (View $view) {
$view->static();
return $view
->icon('window')
->addWidgets([
GenderWidget::make()->layout(4, 2, 9, 0),
])
->addFilters([
Gender::make(),
Status::make(),
Year::make(),
]);
}),
];
}
public function uriKey()
{
return 'demographics';
}
}
Demo
Screen.Recording.2024-02-05.at.2.45.25.PM.mov
It doesn't show in the demo, but the new page loads with no issues after each click
For my Nova menu, I have a section called Reports with two dashboards inside of it
Anytime I click from one of those dashboards links to any other item in the menu, the menu state doesn't change. This is limited to just these two dashboards... If I remove the
NovaDashboardcard from each dashboard, the issue resolves itself, so I figured it something to do withNovaDashboard,Ex dashboard
Demo
Screen.Recording.2024-02-05.at.2.45.25.PM.mov
It doesn't show in the demo, but the new page loads with no issues after each click