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 42925af commit 750630aCopy full SHA for 750630a
src/magento/lib/admin/index.js
@@ -156,7 +156,7 @@ export default magento => ({
156
conditionType = 'like',
157
) => {
158
const currentPage = parseInt(offset / pageSize, 10) + 1;
159
- const currentAttributeValue = conditionType === 'eq' ? attributeValue : `%${attributeValue}%`;
+ const currentAttributeValue = conditionType === 'eq' ? attributeValue : `%\\${attributeValue}%`;
160
const params = {
161
'searchCriteria[filterGroups][0][filters][0][field]': attributeCode,
162
'searchCriteria[filterGroups][0][filters][0][value]': currentAttributeValue,
0 commit comments