rez_core 2.1.98 → 2.1.99

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.1.98",
3
+ "version": "2.1.99",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -472,7 +472,11 @@ export class FilterService {
472
472
  const op = filter.filter_operator;
473
473
  const key = `param_${attr}_${Math.random().toString(36).substring(2, 8)}`;
474
474
 
475
- if (meta.data_source_type === 'entity' && !filter.skip_id) {
475
+ if (
476
+ (meta.data_source_type === 'entity' ||
477
+ meta.data_source_type === 'master') &&
478
+ !filter.skip_id
479
+ ) {
476
480
  attr = `${attr}_id`;
477
481
  }
478
482