fix keyboard feature off
This commit is contained in:
parent
007999ce72
commit
6f97bc072a
@ -62,14 +62,16 @@ const Input = ({ onStart }) => {
|
||||
onFocus={() => setInfocuse(true)}
|
||||
ref={inputRef}
|
||||
onClick={(event) => {
|
||||
if (keyboardFeature) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
inputRef.current.blur();
|
||||
}
|
||||
}}
|
||||
id="input"
|
||||
autoComplete="off"
|
||||
/>
|
||||
<InputHolder onClick={() => setInfocuse(true)} />
|
||||
{keyboardFeature && <InputHolder onClick={() => setInfocuse(true)} />}
|
||||
<IconButton type="submit">
|
||||
<ArrowImg src={arrow} />
|
||||
</IconButton>
|
||||
|
Loading…
Reference in New Issue
Block a user