Skip to content

Commit 7e46917

Browse files
Update Filter.php fix issue £20624
Fix issue #20624
1 parent b3d9a05 commit 7e46917

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

0 commit comments

Comments
 (0)