Skip to content

Commit

Permalink
FieldSelectionDialog.expandAvailableFields update to remove double en…
Browse files Browse the repository at this point in the history
…coding of field names
  • Loading branch information
cnathe committed Jan 29, 2025
1 parent 0ceb87f commit 19df506
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,7 @@ private String expandAvailableFields(String... fields)

while(iterator.hasNext())
{
String field = iterator.next().trim();
String fieldEncoded = field.contains("$D") ? field : EscapeUtil.fieldKeyEncodePart(field);
fieldKey.append(fieldEncoded);
fieldKey.append(iterator.next().trim());

// If this isn't the last item in the collection keep expanding and building the expected data-fieldkey value.
if(iterator.hasNext())
Expand Down

0 comments on commit 19df506

Please sign in to comment.