-
Notifications
You must be signed in to change notification settings - Fork 292
fix: prevent debouncing the selection state update in TextareaComposer #2741
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: prevent debouncing the selection state update in TextareaComposer #2741
Conversation
|
Size Change: -183 B (-0.01%) Total Size: 1.35 MB
ℹ️ View Unchanged
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2741 +/- ##
==========================================
- Coverage 81.34% 81.25% -0.09%
==========================================
Files 481 481
Lines 9535 9532 -3
Branches 2219 2219
==========================================
- Hits 7756 7745 -11
- Misses 1408 1416 +8
Partials 371 371 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
## [13.2.0](v13.1.2...v13.2.0) (2025-06-20) ### Bug Fixes * prevent debouncing the selection state update in TextareaComposer ([#2741](#2741)) ([e50d89a](e50d89a)) ### Features * add pagination tools to ChannelList context ([#2742](#2742)) ([9599e9d](9599e9d)) ### Chores * **deps:** remove mml-react ([#2743](#2743)) ([33e5fc9](33e5fc9)) * **deps:** upgrade stream-chat to v9.8.0 ([2fd6d65](2fd6d65))
|
🎉 This PR is included in version 13.2.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Submit a pull request
🎯 Goal
Fixes a problem when a text change is committed to the state before the selection state is updated (e.g. Ctrl + A & Ctrl + V -> Ctrl + V takes precendence and just leads to appending of inserted string instead of overwriting int)