-
-
Notifications
You must be signed in to change notification settings - Fork 307
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: get oneListGroup to work as expected for array of strings (#662)
If I have `oneListGroup` enabled I would expect that: ```json { a: ['(first)', 'second'] } ``` Would give me: ```xml <a>(first)(second)</a> ``` But I get: ```xml <a> <a>(first)</a> <a>(second)</a> </a> ``` This commit fixes that issue. Co-authored-by: Andreas Naziris <andreas.naziris@converlens.com>
- Loading branch information
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters