-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Area: TextInputNeeds: Author FeedbackThe issue/PR needs activity from its author (label drives bot activity)The issue/PR needs activity from its author (label drives bot activity)Needs: Environment InfoIssue lacks proper environment issue (label drives bot activity)Issue lacks proper environment issue (label drives bot activity)Needs: ReproNeeds: Verify on Latest VersionIssue needs to be reproduced on a newer version (label drives bot activity)Issue needs to be reproduced on a newer version (label drives bot activity)Partner: Officebug
Milestone
Description
Steps to Reproduce
(Write your steps here:)
When the text prop update happens back to back quickly and programmatically (not via user interaction), the latest update request is ignored.
Basic Triage
(Write what you thought would happen.)
The Js side gets updated as expected and an update is triggered to the native side as well, but I think it's ignored in the TextInputViewManager because of this condition:
else if (propertyName == "text") {
if (m_mostRecentEventCount == m_nativeEventCount) {
.
.
.
}
}
The event counts for native and javascript are out of sync. If I manipulate those values it updates correctly.
Metadata
Metadata
Assignees
Labels
Area: TextInputNeeds: Author FeedbackThe issue/PR needs activity from its author (label drives bot activity)The issue/PR needs activity from its author (label drives bot activity)Needs: Environment InfoIssue lacks proper environment issue (label drives bot activity)Issue lacks proper environment issue (label drives bot activity)Needs: ReproNeeds: Verify on Latest VersionIssue needs to be reproduced on a newer version (label drives bot activity)Issue needs to be reproduced on a newer version (label drives bot activity)Partner: Officebug