From: Go MAEDA Date: Fri, 20 Mar 2020 00:45:00 +0000 (+0000) Subject: Merged r19586 from trunk to 4.1-stable (#33176). X-Git-Tag: 4.1.1~25 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d9c4b9d2ec12477b17a3b2f06a634f5f268b7c0e;p=redmine.git Merged r19586 from trunk to 4.1-stable (#33176). git-svn-id: http://svn.redmine.org/redmine/branches/4.1-stable@19587 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- 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