diff --git a/public/app/features/dashboard/dashgrid/DataPanel.tsx b/public/app/features/dashboard/dashgrid/DataPanel.tsx index c8d1947f892..42889a4eedb 100644 --- a/public/app/features/dashboard/dashgrid/DataPanel.tsx +++ b/public/app/features/dashboard/dashgrid/DataPanel.tsx @@ -157,6 +157,8 @@ export class DataPanel extends Component { message = err.data.message; } else if (err.data && err.data.error) { message = err.data.error; + } else if (err.status) { + message = `Query error: ${err.status} ${err.statusText}`; } onError(message, err);