We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83f5867 commit be1e905Copy full SHA for be1e905
app/code/Magento/CatalogSearch/Model/Layer/Filter/Attribute.php
@@ -62,6 +62,9 @@ public function apply(\Magento\Framework\App\RequestInterface $request)
62
->getProductCollection();
63
$productCollection->addFieldToFilter($attribute->getAttributeCode(), $attributeValue);
64
$label = $this->getOptionText($attributeValue);
65
+ if (is_array($label)) {
66
+ $label = implode(',', $label);
67
+ }
68
$this->getLayer()
69
->getState()
70
->addFilter($this->_createItem($label, $attributeValue));
0 commit comments