We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e9e292 commit a37c07eCopy full SHA for a37c07e
index.js
@@ -40,7 +40,9 @@ function download () {
40
41
$('#form').alpaca({
42
// Schema from schema/index.js
43
- schema,
+ // Stringify and parse to remove all pointer-like objects that could break
44
+ // things such as validation error messages.
45
+ schema: JSON.parse(JSON.stringify(schema)),
46
options: {
47
// Field extra data from schema/options.js
48
fields,
0 commit comments