diff options
-rw-r--r-- | app/helpers/sort_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/sort_helper.rb b/app/helpers/sort_helper.rb index 5350774b2..e6fe55fba 100644 --- a/app/helpers/sort_helper.rb +++ b/app/helpers/sort_helper.rb @@ -115,10 +115,10 @@ module SortHelper if column.to_s == @sort_criteria.first_key if @sort_criteria.first_asc? - css = 'sort asc' + css = 'sort asc icon icon-sorted-desc' order = 'desc' else - css = 'sort desc' + css = 'sort desc icon icon-sorted-asc' order = 'asc' end end |