From bc26780d8fc68a0be0cbcd00f592c64285037c3f Mon Sep 17 00:00:00 2001 From: ElectricalBoy <15651807+ElectricalBoy@users.noreply.github.com> Date: Wed, 25 Feb 2026 11:40:13 +0900 Subject: [PATCH] force wrapping --- lua/wikis/commons/CountryRepresentation.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lua/wikis/commons/CountryRepresentation.lua b/lua/wikis/commons/CountryRepresentation.lua index b42ac752073..1943ea14be3 100644 --- a/lua/wikis/commons/CountryRepresentation.lua +++ b/lua/wikis/commons/CountryRepresentation.lua @@ -156,9 +156,12 @@ function CountryRepresentation:create() attributes = {['data-sort-value'] = #players}, children = self:_ratioDisplay(#players) }, - TableWidgets.Cell{children = Array.interleave(Array.map(players, function (player) - return PlayerDisplay.InlinePlayer{player = player, showFlag = false} - end), ', ')}, + TableWidgets.Cell{ + nowrap = false, + children = Array.interleave(Array.map(players, function (player) + return PlayerDisplay.InlinePlayer{player = player, showFlag = false} + end), ', ') + }, }}) end