From 0e4c5c5b16a96895047b69385436a5596691cf09 Mon Sep 17 00:00:00 2001 From: ks129 <45097959+ks129@users.noreply.github.com> Date: Wed, 17 Feb 2021 15:39:57 +0200 Subject: Unfocus currently focused element before scrolling to invalid question --- src/pages/FormPage.tsx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/pages/FormPage.tsx b/src/pages/FormPage.tsx index f0fb548..64d21f0 100644 --- a/src/pages/FormPage.tsx +++ b/src/pages/FormPage.tsx @@ -229,6 +229,11 @@ function FormPage(): JSX.Element { if (invalidFieldIDs.length) { const firstErrored = questions[invalidFieldIDs[0]]; if (firstErrored && firstErrored.props.scroll_ref) { + // If any element is already focused, unfocus it to avoid not scrolling behavior. + if (document.activeElement && document.activeElement instanceof HTMLElement) { + document.activeElement.blur(); + } + firstErrored.props.scroll_ref.current.scrollIntoView({ behavior: "smooth", block: "center" }); if (firstErrored.props.focus_ref && firstErrored.props.focus_ref.current) { firstErrored.props.focus_ref.current.focus({ preventScroll: true }); -- cgit v1.2.3