Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
📝 WalkthroughWalkthroughThe PR introduces consistent input normalization across the suggester system by adding a Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
🎉 This PR is included in version 2.10.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Summary
Issue
Closes #1078
Reproduction
Root Cause
FuzzySuggestModal internally calls query.toLowerCase(). When the input event or options list includes undefined (e.g., folder children without a basename or programmatic updates that pass undefined), the query or option is not a string. This caused the Android WebView to throw at .toLowerCase(), breaking filtering and leaving the suggester unusable.
Fix
Tests