Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
fix(live-feed): only show countdown if it is positive (sigh)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Reed committed Sep 25, 2020
1 parent c359bdc commit 2de4f8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/live-feed/live-feed.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ <h4 *ngIf="countdown">Next Season Starts In:<br>{{getCountdown()}}.</h4>
<ion-item lines="none">
<h4>Regular season is over.</h4>
</ion-item>
<ion-item lines="none">
<h4 *ngIf="countdown">Postseason Starts In:<br>{{getCountdown()}}.</h4>
<ion-item lines="none" *ngIf="countdown && countdown.hours >= 0">
<h4>Postseason Starts In:<br>{{getCountdown()}}.</h4>
</ion-item>
</span>
<div id="marquee" data-speed="1">
Expand Down

0 comments on commit 2de4f8f

Please sign in to comment.