Skip to content

Commit

Permalink
fix: fixed referenced field mapping #896
Browse files Browse the repository at this point in the history
  • Loading branch information
hknokh2 committed Oct 24, 2024
1 parent e14e4c1 commit 05b0213
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/modules/models/script_models/script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,7 @@ export default class Script implements IAppScript, ISfdmuRunScript {
}
if (mapping.sourceField && mapping.targetField) {
this.sourceTargetFieldMapping.get(object.name).fieldMapping.set(mapping.sourceField, mapping.targetField);
this.sourceTargetFieldMapping.get(object.name).fieldMapping.set(Common.getFieldName__r(null, mapping.sourceField), Common.getFieldName__r(null, mapping.targetField));
}
});
}
Expand Down

0 comments on commit 05b0213

Please sign in to comment.