Skip to content

Commit bbbb3b0

Browse files
committed
MC-33499: Grid Filter not working for Scheduled Export when selected any kind of Entity Type
1 parent 9686b2d commit bbbb3b0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/code/Magento/ImportExport/Model/ResourceModel/Export/AttributeGridCollection.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ public function getSize(): int
4646
public function addFieldToFilter($field, $condition)
4747
{
4848
if (isset($condition['like'])) {
49-
$value = trim((string)$condition['like'], "\'%");
49+
$value = trim((string)$condition['like'], "'%");
50+
$value = str_replace('\\','',$value);
5051
$this->addFilter($field, $value);
5152
}
5253

0 commit comments

Comments
 (0)