From d863aab5c0d2492025172bb7b396955b86ae81f2 Mon Sep 17 00:00:00 2001 From: hjpalpha <75081997+hjpalpha@users.noreply.github.com> Date: Sat, 28 Feb 2026 05:50:25 +0100 Subject: [PATCH 1/2] fix(ResultsTable): opponents center aligned looking bad --- lua/wikis/commons/ResultsTable/Award.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/wikis/commons/ResultsTable/Award.lua b/lua/wikis/commons/ResultsTable/Award.lua index 0fef02e38f7..9a59585abb1 100644 --- a/lua/wikis/commons/ResultsTable/Award.lua +++ b/lua/wikis/commons/ResultsTable/Award.lua @@ -34,9 +34,9 @@ function AwardsTable:buildColumnDefinitions() {align = 'left'}, {align = 'left'}, self.config.queryType ~= Opponent.team and { - align = 'center', + align = 'left', } or self.config.playerResultsOfTeam and { - align = 'center', + align = 'left', } or nil, { align = 'right', From e438099f150074a10564d4179473f81159354afc Mon Sep 17 00:00:00 2001 From: hjpalpha <75081997+hjpalpha@users.noreply.github.com> Date: Sat, 28 Feb 2026 06:03:30 +0100 Subject: [PATCH 2/2] simplify a tiny bit --- lua/wikis/commons/ResultsTable/Award.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lua/wikis/commons/ResultsTable/Award.lua b/lua/wikis/commons/ResultsTable/Award.lua index 9a59585abb1..8ea5d201aec 100644 --- a/lua/wikis/commons/ResultsTable/Award.lua +++ b/lua/wikis/commons/ResultsTable/Award.lua @@ -33,9 +33,7 @@ function AwardsTable:buildColumnDefinitions() {align = 'left'}, {align = 'left'}, {align = 'left'}, - self.config.queryType ~= Opponent.team and { - align = 'left', - } or self.config.playerResultsOfTeam and { + (self.config.queryType ~= Opponent.team or self.config.playerResultsOfTeam) and { align = 'left', } or nil, {