Skip to content

Commit 1671585

Browse files
reduce input change debounce time
1 parent 485cc3d commit 1671585

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/packages/lowcoder/src/comps/comps/textInputComp/textInputConstants.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ export const useTextInputProps = (props: RecordConstructorToView<typeof textInpu
221221
propsRef.current.value.onChange(value);
222222
propsRef.current.onEvent("change");
223223
changeRef.current = false; // Reset after commit
224-
}, 1000)
224+
}, 100)
225225
);
226226

227227
const handleChange = (e: ChangeEvent<HTMLInputElement>) => {

0 commit comments

Comments
 (0)