From: Daniel Karbach Date: Tue, 12 Apr 2022 18:57:30 +0000 (+0200) Subject: always fill scorechart X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=601947fac408c56023badfaafc9d47cb7e57a0f7;p=alttp.git always fill scorechart for now --- 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; });