Skip to content
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

The UI eagerly % encodes the values. #21

Closed
mabdullah-cinglevue opened this issue May 29, 2014 · 2 comments
Closed

The UI eagerly % encodes the values. #21

mabdullah-cinglevue opened this issue May 29, 2014 · 2 comments

Comments

@mabdullah-cinglevue
Copy link

The UI currently calls encodeURIComponent, which ends up doing a percent encode on the parameters, which breaks the the values on form submission. Line 7742 in static/all.js should go from map[o.name] = encodeURI(o.value); to map[o.name] = o.value;

@rantav
Copy link
Owner

rantav commented May 30, 2014

Fixed with 588a4ae

@rantav rantav closed this as completed May 30, 2014
@rantav
Copy link
Owner

rantav commented May 30, 2014

released into pypi in flask-restful-swagger-0.11

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants