[WEB-2802]fix:filters drop down fix safari#6133
Conversation
WalkthroughThe changes in this pull request focus on modifying the Changes
Possibly related PRs
Suggested reviewers
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (1)
web/core/components/issues/issue-layouts/filters/header/helpers/dropdown.tsx (1)
88-88: Consider adding a comment to document the Safari fix.To help future maintainers understand the purpose of
translate-y-0, consider adding a comment explaining that it addresses a Safari-specific positioning issue.- <Popover.Panel className="fixed z-10 translate-y-0"> + {/* translate-y-0 fixes dropdown positioning issues in Safari */} + <Popover.Panel className="fixed z-10 translate-y-0">
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (1)
web/core/components/issues/issue-layouts/filters/header/helpers/dropdown.tsx(1 hunks)
🔇 Additional comments (1)
web/core/components/issues/issue-layouts/filters/header/helpers/dropdown.tsx (1)
88-88: LGTM! Good fix for Safari's positioning issue.
The addition of translate-y-0 effectively resolves the Safari-specific positioning issue while maintaining compatibility with other browsers. This works well with the existing transition animations defined in the Transition component.
Summary
Fixed visibility issue of filters dropdown in intake for Safari browser.
Reference
WEB-2802
Summary by CodeRabbit