Do not allow copying items in the recycle bin

This commit is contained in:
Kenn Jacobsen
2019-10-25 07:42:20 +02:00
committed by Sebastiaan Janssen
parent c66676517f
commit 2a016a9ad0

View File

@@ -771,6 +771,7 @@ function listViewController($scope, $interpolate, $routeParams, $injector, $time
$scope.options.allowBulkPublish = $scope.options.allowBulkPublish && !$scope.isTrashed;
$scope.options.allowBulkUnpublish = $scope.options.allowBulkUnpublish && !$scope.isTrashed;
$scope.options.allowBulkCopy = $scope.options.allowBulkCopy && !$scope.isTrashed;
$scope.options.bulkActionsAllowed = $scope.options.allowBulkPublish ||
$scope.options.allowBulkUnpublish ||