Browse Source

Fixed icon for ascending sort order in table legend, #1483

Torkel Ödegaard 11 years ago
parent
commit
7f5f6763ea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/app/panels/graph/legend.js

+ 1 - 1
src/app/panels/graph/legend.js

@@ -78,7 +78,7 @@ function (angular, app, _, kbn, $) {
           var html = '<th class="pointer" data-stat="' + statName + '">' + statName;
 
           if (panel.legend.sort === statName) {
-            var cssClass = panel.legend.sortDesc ? 'fa fa-caret-down' : 'fa-caret-up' ;
+            var cssClass = panel.legend.sortDesc ? 'fa fa-caret-down' : 'fa fa-caret-up' ;
             html += ' <span class="' + cssClass + '"></span>';
           }