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
I have started to get a
Cannot set a numeric property on an object
exception on my forms with ArrayInputs for fields that contains an array of strings.
Bug have appeared in version 3.5.2 after PR #4810.
This happens because this is not a correct way to detect an object values that are used as a subdictionary:
if (value && Object.keys(value).length > 0)
It failes on strings and may be with something else, because:
Object.keys("cats") [ '0', '1', '2', '3' ]
The text was updated successfully, but these errors were encountered:
PR to fix this issue: #4819.
Sorry, something went wrong.
Fixed by #4819
Getting the same issue with <ReferenceArrayInput> and <AutocompleArrayInput>
<ReferenceArrayInput>
<AutocompleArrayInput>
Successfully merging a pull request may close this issue.
I have started to get a
exception on my forms with ArrayInputs for fields that contains an array of strings.
Bug have appeared in version 3.5.2 after PR #4810.
This happens because this is not a correct way to detect an object values that are used as a subdictionary:
if (value && Object.keys(value).length > 0)
It failes on strings and may be with something else, because:
The text was updated successfully, but these errors were encountered: