rez_core 4.0.236 → 4.0.240

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.236",
3
+ "version": "4.0.240",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -221,9 +221,12 @@ export class EntityJSONService extends EntityServiceImpl {
221
221
  // 5. Merge linked attributes using saved filters
222
222
  // 5. Merge linked attributes using saved filters
223
223
  for (const linkAttr of safeAttributes.linkedAttributes) {
224
- const childEntityType = linkAttr.fla_applicable_entity_type;
225
- const sourceKey = linkAttr.applicable_attribute_key; // source column = middle_name
226
- const targetKey = linkAttr.attribute_key; // final JSON key = father_middle_name
224
+
225
+
226
+ const childEntityType = linkAttr.applicable_entity_type; // was undefined
227
+ const sourceKey = linkAttr.applicable_attribute_key; // already correct
228
+ const targetKey = linkAttr.target_attribute_key; // was undefined
229
+ // final JSON key = father_middle_name
227
230
 
228
231
  if (!childEntityType || !sourceKey || !targetKey) continue;
229
232