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

fix(): fixed issue with templating preview, fixes #4714

Torkel Ödegaard 9 лет назад
Родитель
Сommit
4f2628c221
1 измененных файлов с 4 добавлено и 4 удалено
  1. 4 4
      public/app/features/templating/partials/editor.html

+ 4 - 4
public/app/features/templating/partials/editor.html

@@ -217,10 +217,10 @@
 
 
       <div class="gf-form-group">
       <div class="gf-form-group">
         <h5>Preview of values (shows max 20)</h5>
         <h5>Preview of values (shows max 20)</h5>
-        <div class="gf-form">
-          <span class="gf-form-label" ng-repeat="option in current.options | limitTo: 20">
-            {{option.text}}
-          </span>
+        <div class="gf-form-inline">
+          <div class="gf-form" ng-repeat="option in current.options | limitTo: 20">
+            <span class="gf-form-label">{{option.text}}</span>
+          </div>
         </div>
         </div>
       </div>
       </div>
     </div>
     </div>