Skip to content

Commit ccd313a

Browse files
authored
ENGCOM-4075: [Backport] Update Filter.php fix issue #20624 #20863
2 parents a0f2ec2 + 6db3911 commit ccd313a

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/ImportExport/Block/Adminhtml/Export

1 file changed

+2
-2
lines changed

app/code/Magento/ImportExport/Block/Adminhtml/Export/Filter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,8 @@ protected function _getSelectHtmlWithValue(Attribute $attribute, $value)
236236
if ($attribute->getFilterOptions()) {
237237
$options = [];
238238

239-
foreach ($attribute->getFilterOptions() as $value => $label) {
240-
$options[] = ['value' => $value, 'label' => $label];
239+
foreach ($attribute->getFilterOptions() as $optionValue => $label) {
240+
$options[] = ['value' => $optionValue, 'label' => $label];
241241
}
242242
} else {
243243
$options = $attribute->getSource()->getAllOptions(false);

0 commit comments

Comments
 (0)