Skip to content

Commit 588a4ae

Browse files
committed
Fix issue #21 The UI eagerly % encodes the values
1 parent 6ca00e2 commit 588a4ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/js/all.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7739,7 +7739,7 @@ templates['status_code'] = template(function (Handlebars,depth0,helpers,partials
77397739
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
77407740
o = _ref[_i];
77417741
if ((o.value != null) && jQuery.trim(o.value).length > 0) {
7742-
map[o.name] = encodeURI(o.value);
7742+
map[o.name] = o.value;
77437743
}
77447744
}
77457745
opts.responseContentType = $("div select[name=responseContentType]", $(this.el)).val();

0 commit comments

Comments
 (0)