fix tslint errors

minor fix for "Unnecessary semicolon" TSLint rule
This commit is contained in:
Denys Vuika
2017-06-22 12:06:01 +01:00
committed by Eugenio Romano
parent ef340a398e
commit 56179c2e88
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ export class AppConfigService {
get<T>(key: string): T {
return <T> ObjectUtils.getValue(this.config, key);
};
}
load(resource: string = 'app.config.json'): Promise<any> {
this.configFile = resource;

View File

@@ -112,7 +112,7 @@ export class DocumentListComponent implements OnInit, OnChanges, AfterContentIni
this.data.setFilter(value);
this.loadFolderNodesByFolderNodeId(this.currentFolderId, this.pageSize, this.skipCount);
}
};
}
@Input()
set imageResolver(value: ImageResolver) {