eslint --fix: added missing semicolons

This commit is contained in:
Baptiste Grob
2020-02-04 14:20:20 +01:00
parent 8667aba3de
commit 7d1aff6fe2
36 changed files with 177 additions and 177 deletions

View File

@@ -41,7 +41,7 @@ export class DesktopManager {
if(this.majorDataChangeHandler) {
this.majorDataChangeHandler();
}
})
});
}
saveBackup() {
@@ -73,7 +73,7 @@ export class DesktopManager {
return this.convertComponentForTransmission(component);
})).then((data) => {
this.installationSyncHandler(data);
})
});
}
async installComponent(component) {
@@ -216,7 +216,7 @@ export class DesktopManager {
nullOnEmpty
).then((data) => {
callback(data);
})
});
}
desktop_setMajorDataChangeHandler(handler) {