]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/helpers/Tournament.js
better chart ui
[alttp.git] / resources / js / helpers / Tournament.js
index dd87993295082be648cb97dacd5eb8ada0b70cbf..8f2239f1695c2a87515d5cf876784b1ef4b769f7 100644 (file)
@@ -38,8 +38,8 @@ export const getScoreTable = tournament => {
        runners.forEach(participant => {
                running[participant.id] = 0;
        });
-       const data = [...tournament.rounds].reverse().map(round => {
-               const entry = { number: `#${round.number}` };
+       const data = [...tournament.rounds, {}].reverse().map(round => {
+               const entry = { number: round.number ? `#${round.number}` : '' };
                runners.forEach(participant => {
                        const result = Participant.findResult(participant, round);
                        if (result && result.score) {