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