rez_core 2.1.97 → 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
|
@@ -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 (
|
|
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
|
|