Skip to content

Commit 05bc8a6

Browse files
Update Filter.php fix issue £20624
Fix issue magento#20624
1 parent eb6946b commit 05bc8a6

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 $filterOptions => $label) {
240+
$options[] = ['value' => $filterOptions, 'label' => $label];
241241
}
242242
} else {
243243
$options = $attribute->getSource()->getAllOptions(false);

0 commit comments

Comments
 (0)