mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Fixed render issue when resizing rows
This commit is contained in:
parent
107cf6b817
commit
6ddb642790
@ -116,7 +116,6 @@ angular.module('kibana.dashcontrol', [])
|
||||
}
|
||||
|
||||
$scope.elasticsearch_save = function(type) {
|
||||
console.log(type)
|
||||
// Clone object so we can modify it without influencing the existing obejct
|
||||
var save = _.clone($scope.dashboards)
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
<kibana-panel ng-controller='histogram' style="height:{{row.height}}">
|
||||
<div histogram params="{{panel}}" style="height:{{row.height}}"></div>
|
||||
<div histogram params="{{panel}}" style="height:{{row.height}};position:relative"></div>
|
||||
</kibana-panel>
|
@ -105,7 +105,8 @@ angular.module('kibana.histogram', [])
|
||||
data: {
|
||||
label: $scope.panel.query[k].label || k,
|
||||
data: data,
|
||||
}
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
if (!(_.isUndefined($scope.panel.query[k].color)))
|
||||
|
@ -1,3 +1,3 @@
|
||||
<kibana-panel ng-controller='pie'>
|
||||
<div pie params="{{panel}}" style="height:{{row.height}}"></div>
|
||||
<div pie params="{{panel}}" style="height:{{row.height}};position:relative"></div>
|
||||
</kibana-panel>
|
Loading…
Reference in New Issue
Block a user