1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-01 05:09:40 +00:00

add space after comma to lib/redmine/activity/fetcher.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20378 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-11-15 12:36:09 +00:00
parent 91a3b5102b
commit e203eff6fe

View File

@ -94,7 +94,7 @@ module Redmine
end
end
e.sort! {|a,b| b.event_datetime <=> a.event_datetime}
e.sort! {|a, b| b.event_datetime <=> a.event_datetime}
if options[:limit]
e = e.slice(0, options[:limit])