tslint: more const fixes (#13035)

This commit is contained in:
Torkel Ödegaard
2018-08-26 20:19:23 +02:00
committed by GitHub
parent 314b645857
commit 35c00891e7
32 changed files with 120 additions and 123 deletions

View File

@@ -20,7 +20,7 @@ export class OrgDetailsCtrl {
if (!$scope.orgForm.$valid) {
return;
}
var data = { name: $scope.org.name };
const data = { name: $scope.org.name };
backendSrv.put('/api/org', data).then($scope.getOrgInfo);
};