rez_core 2.0.74 → 2.0.75

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "2.0.74",
3
+ "version": "2.0.75",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -297,7 +297,7 @@ export class FilterService {
297
297
  case 'contains':
298
298
  return {
299
299
  query: `LOWER(e.${attr}) LIKE :${key}`,
300
- params: { [key]: `%${val.toLowerCase()}%` },
300
+ params: { [key]: `%${val?val.toLowerCase():""}%` },
301
301
  };
302
302
  case 'equal':
303
303
  return {