summaryrefslogtreecommitdiff
path: root/views/head.pug
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2022-02-20 12:35:01 +0100
committerTor Andersson <tor@ccxvii.net>2022-02-20 12:35:19 +0100
commitcc6b15082702b18ae2c36759f973505162464f50 (patch)
treeccfd8703fb6a39c210f714cafe27560166f3e45a /views/head.pug
parentcbe8a8db8d7409f07537118dd8c844206e5cee7f (diff)
downloadserver-cc6b15082702b18ae2c36759f973505162464f50.tar.gz
Allow line-breaks on scenario/options column in game lists.
Diffstat (limited to 'views/head.pug')
-rw-r--r--views/head.pug2
1 files changed, 1 insertions, 1 deletions
diff --git a/views/head.pug b/views/head.pug
index 3787bc5..612a54c 100644
--- a/views/head.pug
+++ b/views/head.pug
@@ -60,7 +60,7 @@ mixin gametable(status,table,hide_title=0)
td: a(href="/join/"+row.game_id)= row.game_id
unless hide_title
td.w: a(href="/"+row.title_id)= row.title_name
- td.w= row.options !== "None" ? row.scenario + ", " + row.options : row.scenario
+ td= row.options !== "None" ? row.scenario + ", " + row.options : row.scenario
if row.player_names
td!= row.player_names
else