filemanager: make copy of entries into select to avoid reference

This commit is contained in:
Johannes Zellner
2021-02-01 20:32:32 +01:00
parent da6ee44a2a
commit 64ea5e827b

View File

@@ -462,7 +462,7 @@ app.controller('FileManagerController', ['$scope', '$translate', '$timeout', 'Cl
};
$scope.actionSelectAll = function () {
$scope.selected = $scope.entries;
$scope.selected = $scope.entries.slice();
};
$scope.goDirectoryUp = function () {