Hi,
I added two dashboards to my application:
protected function dashboards()
{
return [
"Test 1"=> TestDashboard1::create(),
"Test 2"=> TestDashboard2::create()
];
}
protected function csrf()
{
return CSRF::create()
->name("_token")
->token(csrf_token());
}
When I open the App, the first one comes up which is OK. When I click on the second one, it's just added to the bottom of the first one. I expected it to replace the first one. When I then click onto the first one again, I get an endlessly spinning loading symbol.
I integrated the dashboard App into my laravel application, in case that this is importent.
Please let me know if this is a bug or if I'm doing something wrong.
Thanks and best regards
Christian