diff --git a/src/Dto/ActionDto.php b/src/Dto/ActionDto.php index 45fcccbc69..bf85faf70a 100644 --- a/src/Dto/ActionDto.php +++ b/src/Dto/ActionDto.php @@ -296,6 +296,10 @@ public function getAsConfigObject(): Action $action->linkToRoute($this->routeName, $this->routeParameters); } + if (null !== $this->url) { + $action->linkToUrl($this->url); + } + if (null !== $this->displayCallable) { $action->displayIf($this->displayCallable); }