Commit b55b7cde by bergquist

fix(alerting): remove error message when model is valid again

closes #5921
parent 11a4ff0f
......@@ -208,6 +208,8 @@ export class AlertTabCtrl {
this.error = 'Currently the alerting backend only supports Graphite queries';
} else if (this.templateSrv.variableExists(foundTarget.target)) {
this.error = 'Template variables are not supported in alert queries';
} else {
this.error = '';
}
});
}
......
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