From 168798ddcd872836bf12c73f47e8b8bc1119975f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Zapletal?= Date: Wed, 27 Mar 2019 09:10:34 +0100 Subject: [PATCH] Added render attrs into template --- src/Component/Frontend/Printer/Printer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Component/Frontend/Printer/Printer.php b/src/Component/Frontend/Printer/Printer.php index 8d95ea6..b702c2d 100644 --- a/src/Component/Frontend/Printer/Printer.php +++ b/src/Component/Frontend/Printer/Printer.php @@ -79,6 +79,7 @@ public function __construct( */ public function render(array $attrs) : void { + $this->template->attrs = $attrs; $this->template->rows = $this->getResult($attrs); $this->template->paginator = $this->paginator;