Fix handling of defaultValue() in annotation

This commit is contained in:
2025-03-27 11:56:00 -05:00
parent 16cedfeb6e
commit 55d046cd86

View File

@ -238,7 +238,7 @@ public class QFieldMetaData implements Cloneable
if(StringUtils.hasContent(fieldAnnotation.defaultValue()))
{
ValueUtils.getValueAsFieldType(this.type, fieldAnnotation.defaultValue());
withDefaultValue(ValueUtils.getValueAsFieldType(this.type, fieldAnnotation.defaultValue()));
}
}
}