diff --git a/packages/web/components/templates/article/EditLabelsControl.tsx b/packages/web/components/templates/article/EditLabelsControl.tsx index ead74eb03..aa62b492e 100644 --- a/packages/web/components/templates/article/EditLabelsControl.tsx +++ b/packages/web/components/templates/article/EditLabelsControl.tsx @@ -50,14 +50,14 @@ function Header(props: HeaderProps): JSX.Element { const inputRef = useRef(null) useEffect(() => { - if (props.focused && inputRef.current) { + if (!isTouchScreenDevice() && props.focused && inputRef.current) { inputRef.current.focus() } }, [props.focused]) return ( -