Просмотр исходного кода

extra fix for percent sign in aliases and plothover, #506

Torkel Ödegaard 11 лет назад
Родитель
Сommit
f422c84414
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/app/directives/grafanaGraph.js

+ 1 - 1
src/app/directives/grafanaGraph.js

@@ -339,7 +339,7 @@ function (angular, $, kbn, moment, _) {
             if (seriesInfo.alias) {
               group = '<small style="font-size:0.9em;">' +
                 '<i class="icon-circle" style="color:'+item.series.color+';"></i>' + ' ' +
-                (decodeURIComponent(seriesInfo.alias)) +
+                seriesInfo.alias +
               '</small><br>';
             } else {
               group = kbn.query_color_dot(item.series.color, 15) + ' ';