소스 검색

Fixed asteric icon in graphite metric path selector, broken after resent font awesome upgrade, #1361

Torkel Ödegaard 11 년 전
부모
커밋
5cef73331c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/app/features/graphite/queryCtrl.js

+ 1 - 1
src/app/features/graphite/queryCtrl.js

@@ -293,7 +293,7 @@ function (angular, _, config, gfunc, Parser) {
     function MetricSegment(options) {
       if (options === '*' || options.value === '*') {
         this.value = '*';
-        this.html = $sce.trustAsHtml('<i class="icon-asterisk"><i>');
+        this.html = $sce.trustAsHtml('<i class="fa fa-asterisk"><i>');
         this.expandable = true;
         return;
       }