From 1a9c65da0edbb251163ef396ddd67c5dfccaab3e Mon Sep 17 00:00:00 2001 From: Alfred Date: Sun, 28 Sep 2025 13:45:32 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix:=20ensure=20link=20is=20crea?= =?UTF-8?q?ted=20with=20correct=20parameters?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Application/UI/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application/UI/Form.php b/src/Application/UI/Form.php index a5be276de..bd696f6db 100644 --- a/src/Application/UI/Form.php +++ b/src/Application/UI/Form.php @@ -42,7 +42,7 @@ protected function validateParent(Nette\ComponentModel\IContainer $parent): void } if (!$this->getAction()) { - $this->setAction(new Link($presenter, 'this')); + $this->setAction(new Link($presenter, 'this', $presenter->getParameters())); } $controls = $this->getControls();