diff --git a/website/src/components/broadcast/Standings.vue b/website/src/components/broadcast/Standings.vue index ca54c22d..499cf986 100644 --- a/website/src/components/broadcast/Standings.vue +++ b/website/src/components/broadcast/Standings.vue @@ -300,6 +300,10 @@ export default { group.forEach((team, i) => { team.standings.rank = display; team.standings.tie_show_number = i === 0; + + if (standings.length === 1) { + team.standings.tie_show_number = false; + } rank++; }); display = rank;