Skip to content
Snippets Groups Projects
Commit ea0048eb authored by Per Cederqvist's avatar Per Cederqvist
Browse files

Sort RecurringItemRanges properly when listing them.

parent 62f4bec5
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,9 @@ class RecurringItemRangesController < ApplicationController ...@@ -9,7 +9,9 @@ class RecurringItemRangesController < ApplicationController
:redirect_to => { :action => :list } :redirect_to => { :action => :list }
def list def list
@recurring_item_range_pages, @recurring_item_ranges = paginate :recurring_item_ranges, :per_page => 10 @recurring_item_range_pages, @recurring_item_ranges = paginate(
:recurring_item_ranges, :per_page => 10,
:order => "recurring_item_id, startdate")
end end
def show def show
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment