rez_core 3.1.118 → 3.1.119
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -23,7 +23,7 @@ export class MapperService extends EntityServiceImpl {
|
|
|
23
23
|
`SELECT id, name, code, status
|
|
24
24
|
FROM cr_mapper
|
|
25
25
|
WHERE mapped_entity_type = ? AND (-1 = ? OR name LIKE ? OR code LIKE ?)`,
|
|
26
|
-
[mappedEntityType, filter ||
|
|
26
|
+
[mappedEntityType, filter || -1, `%${filter}%`, `%${filter}%`],
|
|
27
27
|
);
|
|
28
28
|
|
|
29
29
|
const distinctStatuses = [
|