DashboardScene: Fixes issue moving between dashboards (#86093)

This commit is contained in:
Torkel Ödegaard 2024-04-15 09:18:02 +02:00 committed by GitHub
parent 54e1756b49
commit 814ffdbc2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -74,7 +74,7 @@ export function DashboardScenePage({ match, route, queryParams, history }: Props
return (
<>
<dashboard.Component model={dashboard} />
<dashboard.Component model={dashboard} key={dashboard.state.key} />
<DashboardPrompt dashboard={dashboard} />
</>
);