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
allowedValues
Hi, When trying to add options with special characters / diacritics for a SelectField, I get the following error:
SelectField
Failed to execute 'btoa' on 'Window': The string to be encoded contains characters outside of the Latin1 range.
Example:
<SelectField name="someField" allowedValues={['ă', 'ș']}/>
Is there any workaround for this except using a custom field?
The text was updated successfully, but these errors were encountered:
Hi @rereradu. Indeed, we do use btoa to provide unique value-dependant IDs. I guess we'd need to add some escaping logic to handle whole UTF-8 charset.
btoa
Sorry, something went wrong.
Fixed escaping special characters (fixes #753).
3db196e
c0f8c30
radekmie
Successfully merging a pull request may close this issue.
Hi,
When trying to add options with special characters / diacritics for a
SelectField
, I get the following error:Failed to execute 'btoa' on 'Window': The string to be encoded contains characters outside of the Latin1 range.
Example:
<SelectField name="someField" allowedValues={['ă', 'ș']}/>
Is there any workaround for this except using a custom field?
The text was updated successfully, but these errors were encountered: