From 14e5c12f97fd40be48363861c4befe80a6a166c5 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Tue, 5 Nov 2019 14:08:25 +0000 Subject: [PATCH] cleanup: rubocop: fix Layout/AlignArguments in ApplicationHelper#parse_sections git-svn-id: http://svn.redmine.org/redmine/trunk@18903 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/helpers/application_helper.rb | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 29178c442..cc75df138 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -1193,9 +1193,13 @@ module ApplicationHelper heading, level = $1, $2 @current_section += 1 if @current_section > 1 - content_tag('div', - link_to(l(:button_edit_section), options[:edit_section_links].merge(:section => @current_section), - :class => 'icon-only icon-edit'), + content_tag( + 'div', + link_to( + l(:button_edit_section), + options[:edit_section_links].merge( + :section => @current_section), + :class => 'icon-only icon-edit'), :class => "contextual heading-#{level}", :title => l(:button_edit_section), :id => "section-#{@current_section}") + heading.html_safe