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 594a590 commit d274f96Copy full SHA for d274f96
app/code/Magento/Store/Ui/Component/Listing/Column/Store/Options.php
@@ -81,6 +81,8 @@ protected function sanitizeName($name)
81
preg_match('/\$[:]*{(.)*}/', $name ?: '', $matches);
82
if (count($matches) > 0) {
83
$name = $this->escaper->escapeHtml($this->escaper->escapeJs($name));
84
+ } elseif (preg_match('/^[a-zA-Z\s\']+$/u', $name)) {
85
+ return $name;
86
} else {
87
$name = $this->escaper->escapeHtml($name);
88
}
0 commit comments