Skip to content

Commit f5e52a5

Browse files
Build
1 parent 9959eb2 commit f5e52a5

14 files changed

+23
-19
lines changed

Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## 4.2.8
8+
### Fixed
9+
- Submissions not working due to content-type header incorrect.
10+
711
## 4.2.7
812
### Added
913
- Clickable option to wizard that existed in 3.x

dist/formio.contrib.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.contrib.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.embed.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.embed.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.form.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.form.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.full.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.full.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.utils.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "formiojs",
3-
"version": "4.2.7",
3+
"version": "4.2.8",
44
"description": "JavaScript powered Forms with JSON Form Builder",
55
"main": "index.js",
66
"types": "index.d.ts",

src/Formio.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ export default class Formio {
710710
}
711711
requestArgs.opts.headers = _defaults(requestArgs.opts.headers, {
712712
'Accept': 'application/json',
713-
'Content-type': 'application/json;'
713+
'Content-type': 'application/json'
714714
});
715715
const request = Formio.pluginWait('preRequest', requestArgs)
716716
.then(() => Formio.pluginGet('request', requestArgs)

0 commit comments

Comments
 (0)