From fc7324a8b9acb13f9a04fb59ed7eec7fc0db6056 Mon Sep 17 00:00:00 2001 From: hjpalpha Date: Fri, 13 Dec 2024 09:08:55 +0100 Subject: [PATCH] linter: line length --- .../match/summary/widget_match_summary_game_comment.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/components/widget/match/summary/widget_match_summary_game_comment.lua b/components/widget/match/summary/widget_match_summary_game_comment.lua index eeb652cb7b..447a927c2c 100644 --- a/components/widget/match/summary/widget_match_summary_game_comment.lua +++ b/components/widget/match/summary/widget_match_summary_game_comment.lua @@ -25,7 +25,11 @@ function MatchSummaryGameComment:render() end return HtmlWidgets.Fragment{children = { MatchSummaryBreak{}, - HtmlWidgets.Div{css = {margin = 'auto', ['max-width'] = '100%'}, classes = self.props.classes, children = self.props.children}, + HtmlWidgets.Div{ + css = {margin = 'auto', ['max-width'] = '100%'}, + classes = self.props.classes, + children = self.props.children + }, }} end