Fix issue with prefilling mapping
This commit is contained in:
parent
1dfcad7e88
commit
1e572b3214
|
@ -143,7 +143,9 @@ public class PrefillingMapper {
|
|||
case COMBO_BOX:
|
||||
if (parsedValues.isEmpty())
|
||||
parsedValues.add(parsedValue);
|
||||
properties.put(id, parseComboBoxValues(node, parsedValues));
|
||||
if (!parsedValues.stream().allMatch(Objects::isNull)) {
|
||||
properties.put(id, parseComboBoxValues(node, parsedValues));
|
||||
}
|
||||
break;
|
||||
case TAGS:
|
||||
properties.put(id, mapper.valueToTree(parseTags(parsedValue)).toString());
|
||||
|
|
Loading…
Reference in New Issue