Merge pull request #4041 from devansh-webkul/master
Continue Added #4037
This commit is contained in:
commit
e6a113f604
|
|
@ -27,7 +27,7 @@ class View extends AbstractProduct
|
|||
|
||||
if ($attribute->type == 'boolean') {
|
||||
$value = $value ? 'Yes' : 'No';
|
||||
} elseif($value) {
|
||||
} elseif ($value) {
|
||||
if ($attribute->type == 'select') {
|
||||
$attributeOption = $attributeOptionReposotory->find($value);
|
||||
|
||||
|
|
@ -37,6 +37,8 @@ class View extends AbstractProduct
|
|||
if (! $value) {
|
||||
continue;
|
||||
}
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
} elseif ($attribute->type == 'multiselect' || $attribute->type == 'checkbox') {
|
||||
$lables = [];
|
||||
|
|
|
|||
Loading…
Reference in New Issue