Skip to content

Commit 01c481f

Browse files
ENGCOM-3977: Update Filter.php fix issue #20624 #20625
- Merge Pull Request #20625 from irajneeshgupta/magento2:irajneeshgupta-20624 - Merged commits: 1. 7e46917 2. de2010c
2 parents 00042d2 + de2010c commit 01c481f

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
@@ -237,8 +237,8 @@ protected function _getSelectHtmlWithValue(Attribute $attribute, $value)
237237
if ($attribute->getFilterOptions()) {
238238
$options = [];
239239

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

0 commit comments

Comments
 (0)