diff --git a/components/form/field/TypeInput.tsx b/components/form/field/TypeInput.tsx index 3b6df01..5238274 100644 --- a/components/form/field/TypeInput.tsx +++ b/components/form/field/TypeInput.tsx @@ -376,6 +376,8 @@ export const TypeInput: React.FC = ({ debounce(() => { if (typeof onChange === "function" && latestValueRef.current !== null) { console.log("onChange", latestValueRef.current); + fm.data[name] = latestValueRef.current; + fm.render(); onChange(latestValueRef.current); } }, 1000),