From 3755a6e267fba8085cc0a2b39bb7375c8256d96d Mon Sep 17 00:00:00 2001 From: butschster Date: Wed, 1 Jun 2016 12:46:06 +0300 Subject: [PATCH] Update Columns.php fix error 'Call to a member function getName() on null' in ...\Traits\Assets.php:77 --- src/Form/Element/Columns.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Form/Element/Columns.php b/src/Form/Element/Columns.php index 22963a073..3e6b3f8ba 100644 --- a/src/Form/Element/Columns.php +++ b/src/Form/Element/Columns.php @@ -20,6 +20,7 @@ class Columns extends FormElement public function __construct() { $this->columns = new Collection(); + $this->initializePackage(); } public function initialize()