From 3330b9abcb4fa59da68209575a4e5ba755d49eac Mon Sep 17 00:00:00 2001 From: szn796 <59463703+szn796@users.noreply.github.com> Date: Tue, 23 Apr 2024 18:04:18 +0800 Subject: [PATCH] fix: input enterKeyHint has wrong action btn on IOS (#6607) Co-authored-by: Szn --- src/components/input/input.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/input/input.tsx b/src/components/input/input.tsx index 4ee8f987ec..7851699f66 100644 --- a/src/components/input/input.tsx +++ b/src/components/input/input.tsx @@ -160,6 +160,7 @@ export const Input = forwardRef((p, ref) => { max={props.max} min={props.min} autoComplete={props.autoComplete} + enterKeyHint={props.enterKeyHint} autoFocus={props.autoFocus} pattern={props.pattern} inputMode={props.inputMode}