Selaa lähdekoodia

fixed order of time range tab

Torkel Ödegaard 7 vuotta sitten
vanhempi
commit
905ef22075
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      public/app/plugins/panel/graph/module.ts

+ 2 - 2
public/app/plugins/panel/graph/module.ts

@@ -133,12 +133,12 @@ class GraphCtrl extends MetricsPanelCtrl {
   }
   }
 
 
   onInitEditMode() {
   onInitEditMode() {
-    this.addEditorTab('Display', 'public/app/plugins/panel/graph/tab_display.html', 4);
     this.addEditorTab('Axes', axesEditorComponent, 2);
     this.addEditorTab('Axes', axesEditorComponent, 2);
     this.addEditorTab('Legend', 'public/app/plugins/panel/graph/tab_legend.html', 3);
     this.addEditorTab('Legend', 'public/app/plugins/panel/graph/tab_legend.html', 3);
+    this.addEditorTab('Display', 'public/app/plugins/panel/graph/tab_display.html', 4);
 
 
     if (config.alertingEnabled) {
     if (config.alertingEnabled) {
-      this.addEditorTab('Alert', alertTab, 6);
+      this.addEditorTab('Alert', alertTab, 5);
     }
     }
 
 
     this.subTabIndex = 0;
     this.subTabIndex = 0;