Fixed issue with multiplicity fields

This commit is contained in:
George Kalampokis 2021-05-06 18:58:55 +03:00
parent c157ecc4e7
commit af432cf329
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ public class Field implements Comparable, PropertiesModelBuilder, ViewStyleDefin
Field newField = new Field();
newField.id = key;
newField.ordinal = this.ordinal;
newField.value = properties.containsKey(key)? (String) properties.get(key): null;
newField.value = properties.containsKey(key)? properties.get(key): null;
newField.viewStyle = this.viewStyle;
newField.datatype = this.datatype;
newField.page = this.page;