diff --git a/core/modules/block/src/BlockListBuilder.php b/core/modules/block/src/BlockListBuilder.php index 110111c..149fec8 100644 --- a/core/modules/block/src/BlockListBuilder.php +++ b/core/modules/block/src/BlockListBuilder.php @@ -349,6 +349,10 @@ public function getDefaultOperations(EntityInterface $entity) { if ($entity instanceof OperationsProviderInterface) { $operations += $entity->getOperationLinks(); } + + foreach ($operations as $key => $operation) { + $operations[$key]['url']->setOption('query', ['destination' => 'admin/structure/block']); + } return $operations; }