From 1220983679e797a81d7c47753e2d19a527d0a667 Mon Sep 17 00:00:00 2001 From: Rikard Blixt Date: Thu, 21 Sep 2023 18:03:08 +0200 Subject: [PATCH] Add css class to header icons --- components/match2/wikis/apexlegends/match_summary.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/match2/wikis/apexlegends/match_summary.lua b/components/match2/wikis/apexlegends/match_summary.lua index a940b1c12fe..9e1497cd620 100644 --- a/components/match2/wikis/apexlegends/match_summary.lua +++ b/components/match2/wikis/apexlegends/match_summary.lua @@ -65,7 +65,7 @@ function CustomMatchSummary._createHeader(match) :addClass('panel-tabs__list-item') :attr('role', 'tab') :attr('tabindex', 0) - :tag('i'):addClass(icon):done() + :tag('i'):addClass('panel-tabs__list-icon'):addClass(icon):done() :tag('h4'):addClass('panel-tabs__title'):wikitext(title):done() end local header = mw.html.create('ul'):addClass('panel-tabs__list'):attr('role', 'tablist')