From 761d569a99d708f30877d57971cd933f6bb4b12a Mon Sep 17 00:00:00 2001 From: hjpalpha <75081997+hjpalpha@users.noreply.github.com> Date: Sun, 18 Aug 2024 13:49:51 +0200 Subject: [PATCH] fix(match2): aov comments cut off (#4561) give the comment a width of 100% --- components/match2/wikis/arenaofvalor/match_summary.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/components/match2/wikis/arenaofvalor/match_summary.lua b/components/match2/wikis/arenaofvalor/match_summary.lua index dabc95bf1af..6167aaf0197 100644 --- a/components/match2/wikis/arenaofvalor/match_summary.lua +++ b/components/match2/wikis/arenaofvalor/match_summary.lua @@ -229,6 +229,7 @@ function CustomMatchSummary._createGame(game, gameIndex, date) local comment = mw.html.create('div') comment :wikitext(game.comment) :css('margin', 'auto') + :css('width', '100%') row:addElement(comment) end