X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fhelpers%2FTournament.js;h=fac1681f2bbc94170f41715f9a69238019e0ed9a;hb=601947fac408c56023badfaafc9d47cb7e57a0f7;hp=7ff04df0d821da7874e58a56f2337bc69c8d12ea;hpb=e0616336a824a6d59c4b9d25ef4ed7fa26214cef;p=alttp.git diff --git a/resources/js/helpers/Tournament.js b/resources/js/helpers/Tournament.js index 7ff04df..fac1681 100644 --- a/resources/js/helpers/Tournament.js +++ b/resources/js/helpers/Tournament.js @@ -44,8 +44,8 @@ export const getScoreTable = tournament => { const result = Participant.findResult(participant, round); if (result && result.score) { running[participant.id] += result.score; - entry[Participant.getUserName(participant)] = running[participant.id]; } + entry[Participant.getUserName(participant)] = running[participant.id]; }); return entry; });