1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

cleanup: rubocop: fix Layout/BlockAlignment in app/helpers/queries_helper.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@18944 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2019-11-08 02:09:28 +00:00
parent 89ba5ae630
commit b26cb78737
2 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,6 @@ Layout/AlignHash:
# SupportedStylesAlignWith: either, start_of_block, start_of_line
Layout/BlockAlignment:
Exclude:
- 'app/helpers/queries_helper.rb'
- 'app/models/principal.rb'
- 'app/models/project.rb'
- 'app/models/time_entry.rb'

View File

@ -409,7 +409,7 @@ module QueriesHelper
clear_link += link_to_clear_query
end
content_tag('li', link_to(query.name, url_params.merge(:query_id => query), :class => css) + clear_link.html_safe)
}.join("\n").html_safe,
}.join("\n").html_safe,
:class => 'queries'
) + "\n"
end