We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a54a427 commit 0944fa0Copy full SHA for 0944fa0
app/code/Magento/Search/Model/Adminhtml/System/Config/Source/Engine.php
@@ -50,7 +50,7 @@ public function toOptionArray()
50
$options = [['value' => null, 'label' => __('--Please Select--')]];
51
foreach ($this->engines as $key => $label) {
52
if ($this->engineResolver->getCurrentSearchEngine() === $key) {
53
- $label = $label . ' ' . __('Default');
+ $label = $label . ' (' . __('Default') . ')';
54
}
55
$options[] = ['value' => $key, 'label' => $label];
56
0 commit comments