Skip to content

Commit

Permalink
表示桁変更
Browse files Browse the repository at this point in the history
  • Loading branch information
abap34 committed Jul 17, 2024
1 parent ff64fef commit 8ef5967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion supplement/leaderboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const createRowElement = (item) => {
row.appendChild(iconCell);

const scoreCell = document.createElement('td');
scoreCell.textContent = item.score;
scoreCell.textContent = parseFloat(item.score).toFixed(4);
scoreCell.style.color = '#98c379';
row.appendChild(scoreCell);

Expand Down

0 comments on commit 8ef5967

Please sign in to comment.