mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
PanelSrv fix, now panel rerenders after column span change
This commit is contained in:
parent
ab55412264
commit
20b64d9b7e
@ -42,7 +42,7 @@ function (angular, _, config) {
|
|||||||
$scope.panel.span = Math.min(Math.max($scope.panel.span + span, 1), 12);
|
$scope.panel.span = Math.min(Math.max($scope.panel.span + span, 1), 12);
|
||||||
|
|
||||||
$timeout(function() {
|
$timeout(function() {
|
||||||
$scope.$emit('render');
|
$scope.$broadcast('render');
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user