Skip to content

Commit ecf6ce7

Browse files
committed
change default order of form select options
1 parent 98447c7 commit ecf6ce7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/models/timesheet.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def initialize(options = { })
6767
if !options[:sort].nil? && options[:sort].respond_to?(:to_sym) && ValidSortOptions.keys.include?(options[:sort].to_sym)
6868
self.sort = options[:sort].to_sym
6969
else
70-
self.sort = :project
70+
self.sort = :users
7171
end
7272

7373
self.date_from = options[:date_from] || Date.today.to_s

0 commit comments

Comments
 (0)