From b57730ee9d3199e57906ef35fd8e44b590efe4ad Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 7 Jun 2023 15:52:18 +0100 Subject: [PATCH] Added missing assets_fields declaration Signed-off-by: snipe --- app/Http/Livewire/Importer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Http/Livewire/Importer.php b/app/Http/Livewire/Importer.php index f0d34d80ed..29837700ed 100644 --- a/app/Http/Livewire/Importer.php +++ b/app/Http/Livewire/Importer.php @@ -40,6 +40,7 @@ class Importer extends Component // Make these variables public - we set the properties in the constructor so we can localize them (versus the old static arrays) public $accessories_fields; + public $assets_fields; public $users_fields; public $licenses_fields; public $locations_fields;