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.
2 parents 19fcb92 + 4a3fb1f commit c909537Copy full SHA for c909537
app/code/Magento/Ui/Component/Form/Element/AbstractOptionsField.php
@@ -59,7 +59,7 @@ public function prepare()
59
if (empty($config['rawOptions'])) {
60
$options = $this->convertOptionsValueToString($options);
61
}
62
- $config['options'] = array_values(array_merge_recursive($config['options'], $options));
+ $config['options'] = array_values(array_replace_recursive($config['options'], $options));
63
64
$this->setData('config', (array)$config);
65
parent::prepare();
0 commit comments