Skip to content

Commit

Permalink
for #75 add statusNum check to game status renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
jbkuczma committed May 27, 2018
1 parent 6397c23 commit 519d0e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion App/components/ScoresScreen/GameCell.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class GameCell extends Component<Props> {
<Text style={[ styles.text, { fontSize: 16 }]}> {clock} </Text>
</View>
:
this.props.teams.item.endTimeUTC ?
this.props.teams.item.endTimeUTC || this.props.teams.item.statusNum === 3 ?
<View style={styles.gameInfo}>
<Text style={[ styles.text, {fontSize: 20 }]}> Final </Text>
</View>
Expand Down

0 comments on commit 519d0e5

Please sign in to comment.