-
-
Notifications
You must be signed in to change notification settings - Fork 3k
fix#14449: Dynamic Content in emails - not all variants visible in editor #14966
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
Conversation
@escopecz @RCheesley @MadlenF Hello, just wanted to provide an update on issue #14449 regarding the dynamic content tabs not being fully visible. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## 6.0 #14966 +/- ##
=========================================
Coverage 64.76% 64.76%
Complexity 34742 34742
=========================================
Files 2276 2276
Lines 103762 103762
=========================================
Hits 67200 67200
Misses 36562 36562 🚀 New features to boost your workflow:
|
40439ec
to
421ca92
Compare
Great job @Krishu0765 and welcome to the community with your first PR! I've requested a review from @MadlenF who reported the issue, hopefully we can get it merged in the next patch release! 🚀 |
Hi @RCheesley , thank you so much for the warm welcome! Just a small note—this is actually my 3rd PR (one of them has already been merged 🎉). I'm really glad to be contributing and appreciate the support from the community! |
Ahhh sorry, I missed that - it says first time contributor on the PR but I guess that when it was created you were new to the repo! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Description
Addresses the issue where dynamic content tabs in the email editor wrap onto multiple lines when there are numerous variants, making some tabs inaccessible.
This change applies CSS to the
.dynamic-content .nav-tabs
element to make it a flex container that prevents wrapping (white-space: nowrap
,flex-wrap: nowrap
,display: flex
). Horizontal scrolling (overflow-x: auto
) is enabled to allow users to access all tabs by scrolling horizontally.Also includes
overflow-y: hidden
to prevent unintended vertical scrollbars andscrollbar-width: thin
for better scrollbar appearance in Firefox.Resolves the problem described in issue #14449.
📋 Steps to test this PR: