diff --git a/app/code/Magento/Store/Ui/Component/Listing/Column/Store/Options.php b/app/code/Magento/Store/Ui/Component/Listing/Column/Store/Options.php index ced7dbfadc71a..e5201a21d0957 100644 --- a/app/code/Magento/Store/Ui/Component/Listing/Column/Store/Options.php +++ b/app/code/Magento/Store/Ui/Component/Listing/Column/Store/Options.php @@ -81,7 +81,7 @@ protected function sanitizeName($name) preg_match('/\$[:]*{(.)*}/', $name ?: '', $matches); if (count($matches) > 0) { $name = $this->escaper->escapeHtml($this->escaper->escapeJs($name)); - } elseif (preg_match('/^[a-zA-Z\s\']+$/u', $name)) { + } elseif (preg_match("/^(?=.*')[a-zA-Z0-9' ]+$/", $name)) { return $name; } else { $name = $this->escaper->escapeHtml($name);