From abcb9bcb2e4780f93510629e4cd3234dff8f6ebb Mon Sep 17 00:00:00 2001 From: mbergen Date: Mon, 18 Nov 2024 10:10:24 +0100 Subject: [PATCH] fix(match): Use td over th in warcraft game rows (#5102) * fix(match): Use td over th in warcraft game rows * same for sg --------- Co-authored-by: hjpalpha <75081997+hjpalpha@users.noreply.github.com> --- components/match2/wikis/stormgate/match_summary.lua | 2 +- components/match2/wikis/warcraft/match_summary.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/match2/wikis/stormgate/match_summary.lua b/components/match2/wikis/stormgate/match_summary.lua index e5c3871cf57..2687c139cb0 100644 --- a/components/match2/wikis/stormgate/match_summary.lua +++ b/components/match2/wikis/stormgate/match_summary.lua @@ -296,7 +296,7 @@ function CustomMatchSummary.TeamSubMatchGames(submatch) children = Array.map(submatch.games, function(game) return HtmlWidgets.Tr{ children = { - HtmlWidgets.Th{ + HtmlWidgets.Td{ children = {CustomMatchSummary.Game({hasHeroes = true, isPartOfSubMatch = true}, game)}, }, }, diff --git a/components/match2/wikis/warcraft/match_summary.lua b/components/match2/wikis/warcraft/match_summary.lua index a75cb610677..d421dd0b791 100644 --- a/components/match2/wikis/warcraft/match_summary.lua +++ b/components/match2/wikis/warcraft/match_summary.lua @@ -299,7 +299,7 @@ function CustomMatchSummary.TeamSubMatchGames(submatch) return HtmlWidgets.Tr{ children = { - HtmlWidgets.Th{ + HtmlWidgets.Td{ children = {CustomMatchSummary.Game({hasHeroes = true, isPartOfSubMatch = true}, game)}, }, },