Skip to content

Commit e922224

Browse files
QichenZhunecolas
authored andcommitted
[fix] TextInput refocusing issue with selectTextOnFocus
Check if the input is still focused before selecting text Fix #2704
1 parent 907aac9 commit e922224

File tree

1 file changed

+3
-1
lines changed
  • packages/react-native-web/src/exports/TextInput

1 file changed

+3
-1
lines changed

packages/react-native-web/src/exports/TextInput/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,9 @@ const TextInput: React.AbstractComponent<
290290
clearTimeout(focusTimeout);
291291
}
292292
focusTimeout = setTimeout(() => {
293-
if (hostNode != null) {
293+
// Check if the input is still focused after the timeout
294+
// (see #2704)
295+
if (hostNode != null && document.activeElement === hostNode) {
294296
hostNode.select();
295297
}
296298
}, 0);

0 commit comments

Comments
 (0)