Prevent text wrapping for date in index page
parent
0787a12404
commit
a309a8216c
|
@ -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);
|
||||
|
|
Reference in New Issue