Skip to content

Commit c909537

Browse files
ENGCOM-5048: Fixed #22484 Customer address States are duplicated in backend #22637
- Merge Pull Request #22637 from opencommerce/magento2:2.3-developPr22484 - Merged commits: 1. 4a3fb1f
2 parents 19fcb92 + 4a3fb1f commit c909537

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Ui/Component/Form/Element/AbstractOptionsField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function prepare()
5959
if (empty($config['rawOptions'])) {
6060
$options = $this->convertOptionsValueToString($options);
6161
}
62-
$config['options'] = array_values(array_merge_recursive($config['options'], $options));
62+
$config['options'] = array_values(array_replace_recursive($config['options'], $options));
6363
}
6464
$this->setData('config', (array)$config);
6565
parent::prepare();

0 commit comments

Comments
 (0)