diff options
author | Fabrice Bellingard <bellingard@gmail.com> | 2012-01-17 12:37:46 +0100 |
---|---|---|
committer | Fabrice Bellingard <bellingard@gmail.com> | 2012-01-17 12:40:17 +0100 |
commit | 1f6df54ae158856115e3235d8dfdfacbd30c85f6 (patch) | |
tree | 664b69db7b2b8d51991740034fb716c0f947c543 | |
parent | 7009396badff62eef6542983655c06c021c9aa8b (diff) | |
download | sonarqube-1f6df54ae158856115e3235d8dfdfacbd30c85f6.tar.gz sonarqube-1f6df54ae158856115e3235d8dfdfacbd30c85f6.zip |
SONAR-2940 Filters: Unable to sort the "language" column on both ways
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/helpers/filters_helper.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/helpers/filters_helper.rb b/sonar-server/src/main/webapp/WEB-INF/app/helpers/filters_helper.rb index f23a76e5ba1..b40e9452095 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/helpers/filters_helper.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/helpers/filters_helper.rb @@ -83,6 +83,9 @@ module FiltersHelper elsif filter.sorted_column.on_version? java_filter.setSortedByVersion() + + elsif filter.sorted_column.on_language? + java_filter.setSortedByLanguage() elsif filter.sorted_column.on_metric? && filter.sorted_column.metric metric=filter.sorted_column.metric |