noImplicitAny: Lower count to about 3450 (#17799)
This commit is contained in:
committed by
Torkel Ödegaard
parent
8fcc370fe9
commit
0b9de3f761
+2
-2
@@ -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 });
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user