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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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} />;