diff --git a/vendor/magento/module-catalog/Helper/Product.php b/vendor/magento/module-catalog/Helper/Product.php index 73b5e4a..9bc1189 100644 --- a/vendor/magento/module-catalog/Helper/Product.php +++ b/vendor/magento/module-catalog/Helper/Product.php @@ -351,7 +351,10 @@ class Product extends \Magento\Framework\Url\Helper\Data * @todo specify there all relations for properties depending on input type */ $inputTypes = [ - 'multiselect' => ['backend_model' => \Magento\Eav\Model\Entity\Attribute\Backend\ArrayBackend::class], + 'multiselect' => [ + 'backend_model' => \Magento\Eav\Model\Entity\Attribute\Backend\ArrayBackend::class, + 'source_model' => \Magento\Eav\Model\Entity\Attribute\Source\Table::class + ], 'boolean' => ['source_model' => \Magento\Eav\Model\Entity\Attribute\Source\Boolean::class], ];