mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-25 15:56:19 -05:00
Fix 0's showing in bracket after event
This commit is contained in:
parent
25972a6f07
commit
f67c51b379
|
|
@ -458,7 +458,7 @@ function newParticipantsToBracketData(
|
|||
result.push({
|
||||
number: match.position,
|
||||
participants: participants(),
|
||||
score: participants().length > 1 ? [0, 0] : null,
|
||||
score: participants().filter(Boolean).length > 1 ? [0, 0] : null,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user