| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Signed-off-by: Boaz Shuster <boaz.shuster.github@gmail.com>
|
PatternFly-React preview: https://patternfly-react-pr-3365.surge.sh |
Sorry, something went wrong.
Codecov Report
@@ Coverage Diff @@
## master #3365 +/- ##
=======================================
Coverage 67.53% 67.53%
=======================================
Files 897 897
Lines 25120 25120
Branches 2173 2173
=======================================
Hits 16966 16966
Misses 7141 7141
Partials 1013 1013
Continue to review full report at Codecov.
|
Sorry, something went wrong.
There was a problem hiding this comment.
LGTM
Sorry, something went wrong.
|
Your changes have been released in:
Thanks for your contribution! 🎉 |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
What: Closes #3355
Visibility doesn't have hiddenOn2Xl and visibleOn2Xl and that's why they are set to undefined and are not shown in the class prop.
Nevertheless, these two modifiers exist according to the pf4 core documentations.
The problem is that the way react-style parses a modifier name is if it has a number, it will add _ before it. Thus, hidden-on-2xl will be hiddenOn_2xl and not hiddenOn2Xl.
This patch fixes this and adds a test to verify it works.