Dashboards: Check if dashboard.meta is undefined, if undefined handle redirect in dashboard scene. (#86674)

dashboard meta is not available if the dashboard response is a redirect
This commit is contained in:
Oscar Kilhed
2024-04-22 15:02:40 +02:00
committed by GitHub
parent 2247d6c415
commit 12771e49fc

View File

@@ -60,7 +60,7 @@ function DashboardPageProxy(props: DashboardPageProxyProps) {
if (
dashboard.value &&
!(dashboard.value.meta.canEdit || dashboard.value.meta.canMakeEditable) &&
!(dashboard.value.meta?.canEdit || dashboard.value.meta?.canMakeEditable) &&
isScenesSupportedRoute
) {
return <DashboardScenePage {...props} />;