ソースを参照

Check score data each time the page has been visited

master
kj1352 4年前
コミット
70ee977c98
1個のファイルの変更4行の追加3行の削除
  1. +4
    -3
      src/app/live/live.page.ts

+ 4
- 3
src/app/live/live.page.ts ファイルの表示

@@ -239,6 +239,10 @@ export class LivePage implements OnInit {
}

ngOnInit() {
}

ionViewDidEnter() {
this.matchService.getFixtures().then((data: Array<IMatch>) => {
this.fixtures = data;

@@ -276,9 +280,6 @@ export class LivePage implements OnInit {
});
}

ionViewDidEnter() {
}

showMatchDetails() {
this.router.navigate(['/match-details', { match_id: this.currentMatch.Matchdetail.Match.Id }]);
}


読み込み中…
キャンセル
保存