Skip to content

Commit

Permalink
remove stringify function in submitAsync function (#1591)
Browse files Browse the repository at this point in the history
Co-authored-by: Requiem4aPr0 <philipp.sester@xq-web.de>
  • Loading branch information
Requiem4aPr0 and Requiem4aPr0 authored Jun 9, 2022
1 parent 98544be commit f30e801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion form/Form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class Form extends RootFormData
return axios({
method: <Method>this.element.method,
url: this.element.action,
data: qs.stringify(this.serializeForm()),
data: this.serializeForm(),
headers: {
'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8',
'X-Requested-With': 'XMLHttpRequest'
Expand Down

0 comments on commit f30e801

Please sign in to comment.