rez_core 4.0.235 → 4.0.238

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": "4.0.235",
3
+ "version": "4.0.238",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -328,6 +328,7 @@ for (const linkAttr of safeAttributes.linkedAttributes) {
328
328
 
329
329
  const result = await this.filterService.applyFilter(dto);
330
330
  const rows = result?.data?.entity_list || [];
331
- return rows.length ? (rows[0][targetAttribute] ?? null) : null;
331
+ return rows.length ? (rows[0][childFilterAttribute] ?? null) : null;
332
+
332
333
  }
333
334
  }