changed var to let in 50 files (#13075)

This commit is contained in:
Patrick O'Carroll
2018-08-30 09:03:11 +02:00
committed by Torkel Ödegaard
parent b494a29e02
commit 552a61b6ae
50 changed files with 195 additions and 195 deletions

View File

@@ -144,7 +144,7 @@ export class DashboardModel {
});
// make clone
var copy: any = {};
let copy: any = {};
for (const property in this) {
if (DashboardModel.nonPersistedProperties[property] || !this.hasOwnProperty(property)) {
continue;