Dashboards: Set uid to empty if not found (#97013)

This commit is contained in:
Stephanie Hingtgen 2024-11-26 05:07:07 -07:00 committed by GitHub
parent 768000febd
commit 91d7517146
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -98,7 +98,7 @@ export class DashboardLoaderSrv {
})
.catch(() => {
const dash = this._dashboardLoadFailed('Not found', true);
dash.dashboard.uid = uid;
dash.dashboard.uid = '';
return dash;
});
} else {