Skip to content

Commit

Permalink
LastSubmit 列を最終結果から削除
Browse files Browse the repository at this point in the history
  • Loading branch information
abap34 committed Jul 16, 2024
1 parent e9d60c8 commit adf24df
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion supplement/competetion-result.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@
<th></th>
<th>Score</th>
<th>Submit Count</th>
<th>Last Submit</th>
<th>Shake</th>
</tr>
</thead>
Expand Down
5 changes: 0 additions & 5 deletions supplement/leaderboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,6 @@ const createRowElement = (item) => {
submitCountCell.style.color = '#e06c75';
row.appendChild(submitCountCell);

const lastSubmitCell = document.createElement('td');
lastSubmitCell.textContent = item.lastsubmit;
lastSubmitCell.style.color = '#d19a66';
row.appendChild(lastSubmitCell);

const shakeCell = document.createElement('td');
shakeCell.textContent = item.shake;
shakeCell.style.color = item.shake.includes('↑') ? 'green' : item.shake.includes('↓') ? 'red' : '#abb2bf';
Expand Down

0 comments on commit adf24df

Please sign in to comment.