Skip to content

Commit 8d10dd5

Browse files
committed
fix: handleReset argument fixed
1 parent 45bed8f commit 8d10dd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@core/ui-kit/form-ui/src/components/form-actions.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ async function handleReset(e: Event) {
6262
e?.stopPropagation();
6363
const props = unref(rootProps);
6464
65-
const values = toRaw(props.formApi?.getValues());
65+
const values = toRaw(await props.formApi?.getValues());
6666
6767
if (isFunction(props.handleReset)) {
6868
await props.handleReset?.(values);

0 commit comments

Comments
 (0)