1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-22 16:31:12 +00:00

fix source indent of MembersHelper

git-svn-id: http://svn.redmine.org/redmine/trunk@20085 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-09-26 15:02:18 +00:00
parent 07fc4b1634
commit 70e470fd9b

View File

@ -23,11 +23,14 @@ 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(
s =
content_tag(
'div',
content_tag(
'div',
principals_check_box_tags('membership[user_ids][]', principals), :id => 'principals'),
principals_check_box_tags('membership[user_ids][]', principals),
:id => 'principals'
),
:class => 'objects-selection'
)
links =