We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e468923 commit c49abb9Copy full SHA for c49abb9
core/src/utils/input-shims/hacks/scroll-assist.ts
@@ -192,8 +192,8 @@ const setManualFocus = (el: HTMLElement) => {
192
*
193
* Without this check, we would need to call `ev.stopPropagation()` on the
194
* 'focusin' event of each focusable sibling to prevent the scroll assist
195
- * listener from incorrectly moving focus back to the input. This approach
196
- * is less maintainable and more error-prone.
+ * listener from incorrectly moving focus back to the input. That approach
+ * would be less maintainable and more error-prone.
197
*/
198
if (document.activeElement?.parentNode === el.parentNode) {
199
return;
0 commit comments