Skip to content

Commit

Permalink
Do not format properties that are build using XPath expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
grzesiek2010 committed Nov 15, 2024
1 parent 3342529 commit 7f9f508
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private FormEntity createEntity(TreeElement entityElement, String dataset, List<
IAnswerData answerData = mainInstance.resolveReference(reference).getValue();

if (answerData != null) {
return new Pair<>(saveTo.getSecond(), answerData.getDisplayText());
return new Pair<>(saveTo.getSecond(), answerData.uncast().getString());
} else {
return new Pair<>(saveTo.getSecond(), "");
}
Expand Down

0 comments on commit 7f9f508

Please sign in to comment.