File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 5
5
* ** Table panel** : Fixed table panel bug when trying to show annotations in table panel, fixes [ #4563 ] ( https://github.com/grafana/grafana/issues/4563 )
6
6
* ** App Config** : Fixed app config issue showing content of other app config, fixes [ #4575 ] ( https://github.com/grafana/grafana/issues/4575 )
7
7
* ** Graph Panel** : Fixed legend option max not updating, fixes [ #4601 ] ( https://github.com/grafana/grafana/issues/4601 )
8
+ * ** Graph Panel** : Fixed issue where newly added graph panels shared same axes config, fixes [ #4582 ] ( https://github.com/grafana/grafana/issues/4582 )
8
9
9
10
# 3.0.0-beta2 (2016-04-04)
10
11
Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ class MetricsPanelCtrl extends PanelCtrl {
82
82
this . loading = true ;
83
83
84
84
// load datasource service
85
+ this . setTimeQueryStart ( ) ;
85
86
this . datasourceSrv . get ( this . panel . datasource )
86
87
. then ( this . issueQueries . bind ( this ) )
87
88
. then ( this . handleQueryResult . bind ( this ) )
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import './legend';
5
5
import './series_overrides_ctrl' ;
6
6
7
7
import template from './template' ;
8
+ import angular from 'angular' ;
8
9
import moment from 'moment' ;
9
10
import kbn from 'app/core/utils/kbn' ;
10
11
import _ from 'lodash' ;
@@ -108,7 +109,7 @@ class GraphCtrl extends MetricsPanelCtrl {
108
109
constructor ( $scope , $injector , private annotationsSrv ) {
109
110
super ( $scope , $injector ) ;
110
111
111
- _ . defaults ( this . panel , panelDefaults ) ;
112
+ _ . defaults ( this . panel , angular . copy ( panelDefaults ) ) ;
112
113
_ . defaults ( this . panel . tooltip , panelDefaults . tooltip ) ;
113
114
_ . defaults ( this . panel . grid , panelDefaults . grid ) ;
114
115
_ . defaults ( this . panel . legend , panelDefaults . legend ) ;
You can’t perform that action at this time.
0 commit comments