-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
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
web-ui doesn't support UTF-8 values in kv #783
Comments
Thanks for this. Looks like this is our problem:
That decoding isn't working with the value. Tagged as a bug. |
web-ui 0.7.5 seems to be handling ✈ and other advanced Unicodes such as 🍺 correctly both in a key and in a value. Debian Chrome 56 and Iceweasel (Firefox) 45.7 |
Hey there, We are currently hiring for a full time position to manage the Consul UI. They are going to do a full revamp, so we'll make sure this is included then! |
* Add controller.aclToken to provide a pre-generate ACL token to the controller
If I paste a UTF-8 value into the content box in the kv UI for a new key, it will submit the data properly, but when viewing in Chrome or Safari, the value comes back as a different character.
If I extract the value via the API, it comes back as the correct value.
Steps to reproduce:
foo
with the value of✈
�
curl --verbose http://localhost:8500/v1/kv/foo
\xe2\x9c\x88
, which in turn can be decoded as the proper UTF character.Python decoding example:
The text was updated successfully, but these errors were encountered: