Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ error code, so to specify a error message you also need to use.
[
{
key: 'name',
validationMessages: {
validationMessage: {
'noBob': 'Bob is not OK! You here me?'
},
$validators: {
Expand All @@ -441,7 +441,7 @@ a promise that resolves or rejects.
[
{
key: 'name',
validationMessages: {
validationMessage: {
'noBob': 'Bob is not OK! You here me?'
},
$asyncValidators: {
Expand All @@ -467,7 +467,7 @@ Form defaults in schema
Its recommended to split presentation and validation into a form definition and a json schema. But
if you for some reason can't do this, but *do* have the power to change the schema, you can supply form
default values within the schema using the custom attribute `x-schema-form`. `x-schema-form` should
be a form object and acts as form definition defaults for that field.
be a form object and acts as form definition defaults for that field.

Example schema.
```js
Expand Down