fix: Filterchip breaking input styles#772
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughThe pull request refactors how CSS classnames are passed to components within the Suggested reviewers
🚥 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. 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 |
Summary
classNamedirectly, which targeted the inner<input>element instead of the wrapper, breaking the chip's container styles.classNames.containerprop toInputso consumers can style the outer wrapper without overriding the input element itself.classNames={{ container: ... }}for both theInputandDatePicker'sinputProps, restoring the intended chip layout.