noImplicitAny: Lower count to about 3450 (#17799)

This commit is contained in:
Tobias Skarhed
2019-06-27 15:56:02 +02:00
committed by Torkel Ödegaard
parent 8fcc370fe9
commit 0b9de3f761
27 changed files with 213 additions and 141 deletions
+2 -2
View File
@@ -33,7 +33,7 @@ export class TestDataQueryCtrl extends QueryCtrl {
});
}
pointSelected(option) {
pointSelected(option: any) {
this.selectedPoint = option;
}
@@ -53,7 +53,7 @@ export class TestDataQueryCtrl extends QueryCtrl {
$onInit() {
return getBackendSrv()
.get('/api/tsdb/testdata/scenarios')
.then(res => {
.then((res: any) => {
this.scenarioList = res;
this.scenario = _.find(this.scenarioList, { id: this.target.scenarioId });
});