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

Commit

Permalink
fix(standings): do not show playoff cutoff since it can be wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Reed committed Oct 25, 2020
1 parent 2405056 commit c35252f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/standings/standings.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@ <h4>{{subleague.name}}</h4>
<ion-label class="team-name">{{team.name}}</ion-label>
<ion-note class="team-wins" slot="end" [style]="'--color: ' + team.mainTextColor">
{{team.wins}}-{{team.losses}}
<!--
<div class="playoffs" *ngIf="team.playoffs">🏆</div>
<div class="playoffs" *ngIf="!team.playoffs">&nbsp;</div>
</ion-note>
-->
</ion-note>
</ion-item>
</ion-card-content>
</ion-card>
Expand Down

0 comments on commit c35252f

Please sign in to comment.