From: Geoffrey Allott Date: Sun, 28 May 2023 10:24:39 +0000 (+0100) Subject: show chatrooms in white X-Git-Url: https://git.pointlesshacks.com/?a=commitdiff_plain;h=325787dba1616094c4055ddc2612ee3e23fd6ad6;p=pokerwave.git show chatrooms in white --- diff --git a/site/modules/gamelist.js b/site/modules/gamelist.js index 1724630..c9f401e 100644 --- a/site/modules/gamelist.js +++ b/site/modules/gamelist.js @@ -57,7 +57,7 @@ export class GameList { const game_element = document.createElement("tr"); game_element.classList.add("game-summary"); - if (game.status.completed) { + if (game.status.completed && game.settings.format != "Chatroom") { game_element.classList.add("game-summary-completed"); }