Prevent text wrapping for date in index page

main
sudoer777 2021-11-26 22:04:51 -07:00
parent 0787a12404
commit a309a8216c
1 changed files with 1 additions and 0 deletions

View File

@ -92,6 +92,7 @@ async function loadTable() {
const dateCell = document.createElement('td');
dateCell.textContent = game.date;
dateCell.style['white-space'] = 'nowrap';
row.appendChild(dateCell);
gamesTable.appendChild(row);