diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-09 06:54:29 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-09 06:54:29 +0000 |
commit | 93d117e7fb57c335a9aedb4daf562de348f30670 (patch) | |
tree | 5cf616446d35b61cbb5043c4d8f87901e73d9300 /app | |
parent | d40ed8bfa128cea1f1111193d3b75f1caf2c859f (diff) | |
download | redmine-93d117e7fb57c335a9aedb4daf562de348f30670.tar.gz redmine-93d117e7fb57c335a9aedb4daf562de348f30670.zip |
cleanup: rubocop: fix Layout/AlignArguments in app/helpers/members_helper.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18992 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/members_helper.rb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/app/helpers/members_helper.rb b/app/helpers/members_helper.rb index 9fa2ec370..57f0411ea 100644 --- a/app/helpers/members_helper.rb +++ b/app/helpers/members_helper.rb @@ -23,12 +23,13 @@ module MembersHelper principal_count = scope.count principal_pages = Redmine::Pagination::Paginator.new principal_count, limit, params['page'] principals = scope.offset(principal_pages.offset).limit(principal_pages.per_page).to_a - - s = content_tag('div', - content_tag('div', principals_check_box_tags('membership[user_ids][]', principals), :id => 'principals'), - :class => 'objects-selection' + s = content_tag( + 'div', + content_tag( + 'div', + principals_check_box_tags('membership[user_ids][]', principals), :id => 'principals'), + :class => 'objects-selection' ) - links = pagination_links_full(principal_pages, principal_count, |