xachary
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/components/Form/src/hooks/useFormEvents.ts
|
|
|
@ -336,7 +336,7 @@ export function useFormEvents({ |
|
|
|
} |
|
|
|
|
|
|
|
async function validateFields(nameList?: NamePath[] | undefined) { |
|
|
|
const values = unref(formElRef)?.validateFields(nameList); |
|
|
|
const values = await unref(formElRef)?.validateFields(nameList); |
|
|
|
return handleFormValues(values); |
|
|
|
} |
|
|
|
|
|
|
|
|