diff --git a/src/Contao/View/Contao2BackendView/ActionHandler/PasteHandler.php b/src/Contao/View/Contao2BackendView/ActionHandler/PasteHandler.php index 57c5f7ce..8e541516 100644 --- a/src/Contao/View/Contao2BackendView/ActionHandler/PasteHandler.php +++ b/src/Contao/View/Contao2BackendView/ActionHandler/PasteHandler.php @@ -113,8 +113,10 @@ protected function process(EnvironmentInterface $environment) assert(\is_string($providerName)); // Check if it is a simple create-paste of a single model, if so, redirect to edit view. + // Only for not ajax calls e.g. move. if ( - $this->isSimpleCreatePaste( + null === $input->getParameter('isAjax') + && $this->isSimpleCreatePaste( $clipboard, $providerName )