We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Noticed that my default values in my groups weren't getting set correctly when the default object is being created.
Current source:
Workaround: Updated my code to do the following and it solved the issue -
let defaultModel = VueFormGenerator.schema.createDefaultObject(this.formSchema); merge(this.model, defaultModel) each(this.formSchema.groups, group => { defaultModel = VueFormGenerator.schema.createDefaultObject(group); merge(this.model, defaultModel); }
I am writing this issue mainly as a question to the owners if they intended this case to be handled natively and if so, raise awareness. :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Noticed that my default values in my groups weren't getting set correctly when the default object is being created.
Current source:
Workaround:
Updated my code to do the following and it solved the issue -
I am writing this issue mainly as a question to the owners if they intended this case to be handled natively and if so, raise awareness. :)
The text was updated successfully, but these errors were encountered: