From 01e55c7eeadd0eed50bae2298a2df94d7f5e29b6 Mon Sep 17 00:00:00 2001 From: Harry Bomrah Date: Thu, 12 May 2016 19:56:34 +0800 Subject: [PATCH] small fix for sorting --- app/controllers/archives_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/archives_controller.rb b/app/controllers/archives_controller.rb index d7384f0..26721a8 100644 --- a/app/controllers/archives_controller.rb +++ b/app/controllers/archives_controller.rb @@ -8,7 +8,7 @@ class ArchivesController < ApplicationController page.save end end - files_by_cateogry = ArchiveFile.can_display.filter_by_categories.filter_by_tags.group_by(&:category) + files_by_cateogry = ArchiveFile.where(is_hidden: false).filter_by_categories.filter_by_tags.order_by([:is_top, :desc],[:sort_number, :asc]).group_by(&:category) categories = files_by_cateogry.keys cats = categories.collect do |category| url_to_edit = OrbitHelper.user_has_cateogry?(category) ? "/admin/archive_files?filters[category][]=#{category.id.to_s}" : ""