Skip to content

Commit

Permalink
fix: async issue getting
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoblanc committed Nov 2, 2019
1 parent 8cb45d9 commit ef5d748
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/home/home.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ import { MetaMediaService } from '../provider/meta-media/meta-media.service';
})
export class HomePage implements OnInit {
constructor(public metaMediaService: MetaMediaService,
private githubService: GithubService,
private modalController: ModalController,
private zone: NgZone) {
private githubService: GithubService,
private modalController: ModalController,
private zone: NgZone) {

}

listMetaMedia: ListMetaMedias[];
videos: [];
width: string;
issues: Issue[];
issues: Issue[] = [];
loading = true;


Expand Down

0 comments on commit ef5d748

Please sign in to comment.