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

Fixed issue in dashboard settings modal and timepicker options

Torkel Ödegaard 11 лет назад
Родитель
Сommit
0a677449dc
2 измененных файлов с 3 добавлено и 3 удалено
  1. 2 2
      src/app/panels/timepicker/editor.html
  2. 1 1
      src/app/partials/dasheditor.html

+ 2 - 2
src/app/panels/timepicker/editor.html

@@ -2,11 +2,11 @@
     <div class="section">
       <div class="editor-option">
         <label class="small">Relative time options <small>comma seperated</small></label>
-        <input type="text" array-join class="input-large" ng-model="panel.time_options">
+        <input type="text" array-join class="input-xlarge" ng-model="panel.time_options">
       </div>
       <div class="editor-option">
         <label class="small">Auto-refresh options <small>comma seperated</small></label>
-        <input type="text" array-join class="input-large" ng-model="panel.refresh_intervals">
+        <input type="text" array-join class="input-xlarge" ng-model="panel.refresh_intervals">
       </div>
     </div>
   </div>

+ 1 - 1
src/app/partials/dasheditor.html

@@ -86,7 +86,7 @@
     <ng-include src="'app/partials/import.html'"></ng-include>
   </div>
 
-  <div ng-repeat="pulldown in dashboard.nav" ng-controller="SubmenuCtrl" ng-show="editor.index == 5+$index">
+  <div ng-repeat="pulldown in dashboard.nav" ng-controller="SubmenuCtrl" ng-show="editor.index == 4+$index">
     <ng-include ng-show="pulldown.enable" src="edit_path(pulldown.type)"></ng-include>
     <button ng-hide="pulldown.enable" class="btn" ng-click="pulldown.enable = true">Enable the {{pulldown.type}}</button>
   </div>