1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-30 12:19:38 +00:00

remove spaces inside {} of SortHelper

git-svn-id: http://svn.redmine.org/redmine/trunk@20392 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-11-16 12:21:54 +00:00
parent 37b9c54655
commit 38d5e5b302

View File

@ -124,7 +124,7 @@ module SortHelper
end
caption = column.to_s.humanize unless caption
sort_options = { :sort => @sort_criteria.add(column.to_s, order).to_param }
sort_options = {:sort => @sort_criteria.add(column.to_s, order).to_param}
link_to(caption, {:params => request.query_parameters.merge(sort_options)}, :class => css)
end