mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Fix dashboard sorting in playlists
This commit is contained in:
parent
08f02397b6
commit
e5e8e2021f
@ -132,11 +132,11 @@ function (angular, config, _) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
$scope.movePlaylistItemUp = function(playlistItem) {
|
$scope.movePlaylistItemUp = function(playlistItem) {
|
||||||
$scope.moveDashboard(playlistItem, -1);
|
$scope.movePlaylistItem(playlistItem, -1);
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.movePlaylistItemDown = function(playlistItem) {
|
$scope.movePlaylistItemDown = function(playlistItem) {
|
||||||
$scope.moveDashboard(playlistItem, 1);
|
$scope.movePlaylistItem(playlistItem, 1);
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.init();
|
$scope.init();
|
||||||
|
Loading…
Reference in New Issue
Block a user