Skip to content

Commit b416aa3

Browse files
committed
1 parent 42a4b0d commit b416aa3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adminforth/documentation/docs/tutorial/03-Customization/13-standardPagesTuning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ In cases when column values must follow certain format, you can add `validation`
944944
`validation` is an array of rules, each containing `regExp` or `validator function` that defines a format for a value and `message` that will be displayed in case when entered value does not pass the check.
945945

946946
### Frontend validation
947-
We recomend to use this validation with regExp, because it validates fields in real time
947+
We recommend to use this validation with regExp, because it validates fields in real time
948948

949949
```typescript title="./resources/adminuser.ts"
950950
export default {
@@ -1012,7 +1012,7 @@ export default {
10121012
],
10131013
```
10141014

1015-
>Better avoid using of custom validator, because every time change field (after failed first save attempt), it will make an API call
1015+
>Avoid using a custom validator because every time you change a field (after a failed first save attempt), it will make an API call.
10161016
10171017
## Filtering
10181018

0 commit comments

Comments
 (0)