From a309a8216ceeaecf6054bae16da23fb028eb959f Mon Sep 17 00:00:00 2001 From: sudoer777 <78781902+sudoer777@users.noreply.github.com> Date: Fri, 26 Nov 2021 22:04:51 -0700 Subject: [PATCH] Prevent text wrapping for date in index page --- public/scripts/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/scripts/index.js b/public/scripts/index.js index 180f8b3..ef28b6f 100644 --- a/public/scripts/index.js +++ b/public/scripts/index.js @@ -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);