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 3839c0f commit a8c0c47Copy full SHA for a8c0c47
app/code/Magento/Ui/Component/Filters/Type/Input.php
@@ -65,7 +65,7 @@ public function prepare()
65
protected function applyFilter()
66
{
67
if (isset($this->filterData[$this->getName()])) {
68
- $value = $this->filterData[$this->getName()];
+ $value = str_replace(['%', '_'], ['\%', '\_'], $this->filterData[$this->getName()]);
69
70
if (!empty($value)) {
71
$filter = $this->filterBuilder->setConditionType('like')
0 commit comments