Skip to content

Commit 6028fae

Browse files
authored
Update CONFIG.adoc (#1081)
fix a missing escape
1 parent 48ac775 commit 6028fae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CONFIG.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ Example:
223223
|fieldSettings.validateValue | | |Function to validate input value. +
224224
Simple way: return true/false. Advanced: if value is valid, return `null`, otherwise return error string or object `{error, fixedValue?}`. +
225225
`error` can be a string or an object `{key, args}` to use {i18n}[i18n]. +
226-
`(val: any, fieldSettings: Object) => boolean \| string \| {error: string | Object, fixedValue?: any} \| null`
226+
`(val: any, fieldSettings: Object) => boolean \| string \| {error: string \| Object, fixedValue?: any} \| null`
227227
|fieldSettings.allowCustomValues |- for `multiselect` widget |false |If true, user can provide own options in multiselect, otherwise they will be limited to `listValues`
228228
|fieldSettings.showSearch |- for (multi)select, tree (multi)select|false |Show search (autocomplete)?
229229
|fieldSettings.treeExpandAll |- for `treeselect/treemultiselect` widgets|false |Whether to expand all nodes by default

0 commit comments

Comments
 (0)