Skip to content

Commit 49cf10c

Browse files
committed
ACP2E-464: Remove wildcard and LIKE operator and replace with equal operator in customer grid filter search
1 parent 9edc46c commit 49cf10c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Customer/Model/Config/Source/FilterConditionType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
class FilterConditionType implements OptionSourceInterface
1313
{
1414
public const PARTIAL_MATCH = 0;
15-
public const FULL_MATCH = 1;
16-
public const PREFIX_MATCH = 2;
15+
public const PREFIX_MATCH = 1;
16+
public const FULL_MATCH = 2;
1717

1818
/**
1919
* @inheritdoc

0 commit comments

Comments
 (0)