chore(): tslint checks

This commit is contained in:
Manu Mtz.-Almeida
2018-09-06 21:49:28 +02:00
parent abc9afcc35
commit 4876df928d
19 changed files with 61 additions and 26 deletions

View File

@ -131,7 +131,7 @@ export class Tab {
}
private prepareLazyLoaded(): Promise<HTMLElement | void> {
if (!this.loaded && this.component) {
if (!this.loaded && this.component != null) {
this.loaded = true;
return attachComponent(this.delegate, this.el, this.component, ['ion-page']);
}