Skip to content

Commit e258878

Browse files
MAGETWO-34709 Changing empty label value for first option.
1 parent 80469a6 commit e258878

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ protected function _getSelectHtmlWithValue(Attribute $attribute, $value)
250250
if ('' === $firstOption['value']) {
251251
$options[key($options)]['label'] = '';
252252
} else {
253-
array_unshift($options, ['value' => '', 'label' => '']);
253+
array_unshift($options, ['value' => '', 'label' => __('-- Not Selected --')]);
254254
}
255255
$arguments = [
256256
'name' => $this->getFilterElementName($attribute->getAttributeCode()),

0 commit comments

Comments
 (0)