fix(scroll-assist): touch end events continue to bubble on inputs (#25282)

resolves #25229
This commit is contained in:
Liam DeBeasi
2022-05-16 15:47:01 -04:00
committed by GitHub
parent b35e946168
commit 780f16d9e0

View File

@@ -27,8 +27,6 @@ export const enableScrollAssist = (
// focus this input if the pointer hasn't moved XX pixels
// and the input doesn't already have focus
if (!hasPointerMoved(6, coord, endCoord) && !isFocused(inputEl)) {
ev.stopPropagation();
// begin the input focus process
jsSetFocus(componentEl, inputEl, contentEl, footerEl, keyboardHeight);
}