-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Admin interface - bad parsing of returned response data #48
Comments
Cool, will take a look into it asap. |
Thanks! |
You don't have to copy the assets. you can simply fork influxdb/influxdb-admin, make the changes test them locally and submit a pr to that repo. influxdb-admin is what gets packaged with influxdb. |
Fixed. This should be included in the latest package. |
[Fix #47] Clean up external interface.
I think the server now returns an
application/json
content-type which didn't exist before.This causes jQuery to be smart and parse the response. Then a redundant call to
JSON.parse
over a valid Javascript object (instead of a stringified JSON) kills the parsing.The text was updated successfully, but these errors were encountered: