From 9c2d2abe09c11cacaf60eea91c5e5f871f618edf Mon Sep 17 00:00:00 2001 From: Rikard Blixt Date: Mon, 21 Oct 2024 16:24:49 +0200 Subject: [PATCH] fix --- components/match2/wikis/mobilelegends/match_summary.lua | 2 +- components/match2/wikis/smite/match_summary.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/match2/wikis/mobilelegends/match_summary.lua b/components/match2/wikis/mobilelegends/match_summary.lua index e1098302c73..0026b297e27 100644 --- a/components/match2/wikis/mobilelegends/match_summary.lua +++ b/components/match2/wikis/mobilelegends/match_summary.lua @@ -55,7 +55,7 @@ function CustomMatchSummary.createBody(match) unpack(Array.map(match.games, FnUtil.curry(CustomMatchSummary._createGame, match.date))), MatchSummaryWidgets.Mvp(match.extradata.mvp), MatchSummaryWidgets.CharacterBanTable{bans = characterBansData, date = match.date}, - MatchSummary.makeCastersRow(match.extradata.casters) + MatchSummary.makeCastersRow(match.extradata.casters):create() )} end diff --git a/components/match2/wikis/smite/match_summary.lua b/components/match2/wikis/smite/match_summary.lua index b685ad2bac0..97dc6ec19d6 100644 --- a/components/match2/wikis/smite/match_summary.lua +++ b/components/match2/wikis/smite/match_summary.lua @@ -56,7 +56,7 @@ function CustomMatchSummary.createBody(match) showCountdown and MatchSummaryWidgets.Row{children = DisplayHelper.MatchCountdownBlock(match)} or nil, unpack(Array.map(match.games, FnUtil.curry(CustomMatchSummary._createGame, match.date))), MatchSummaryWidgets.CharacterBanTable{bans = characterBansData, date = match.date}, - MatchSummary.makeCastersRow(match.extradata.casters) + MatchSummary.makeCastersRow(match.extradata.casters):create() )} end