Commit 335b1a89 by Hugo Häggmark Committed by GitHub

BackendSrv: Fixes a stupid mistake with a missing return (#22177)

parent 70b0ec65
...@@ -559,7 +559,7 @@ export class BackendSrv implements BackendService { ...@@ -559,7 +559,7 @@ export class BackendSrv implements BackendService {
})), })),
catchError(err => { catchError(err => {
if (!err.cancelled) { if (!err.cancelled) {
throwError(err); return throwError(err);
} }
if (resultType === CancellationType.dataSourceRequest) { if (resultType === CancellationType.dataSourceRequest) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment