From c8eff849c72f451ebc21ccae96f5199bf9b2312e Mon Sep 17 00:00:00 2001 From: MartkCz Date: Mon, 6 Jan 2020 13:27:42 +0100 Subject: [PATCH] Link typo parameters => params (#244) --- src/Application/UI/Link.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application/UI/Link.php b/src/Application/UI/Link.php index b06937bb5..7236be96f 100644 --- a/src/Application/UI/Link.php +++ b/src/Application/UI/Link.php @@ -94,7 +94,7 @@ public function getParameters(): array */ public function isLinkCurrent(): bool { - return $this->component->isLinkCurrent($this->destination, $this->parameters); + return $this->component->isLinkCurrent($this->destination, $this->params); }