-
-
Notifications
You must be signed in to change notification settings - Fork 589
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
fix: do not render collapsed row #979
base: master
Are you sure you want to change the base?
fix: do not render collapsed row #979
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Codecov Report
@@ Coverage Diff @@
## master #979 +/- ##
=======================================
Coverage 99.49% 99.49%
=======================================
Files 36 36
Lines 989 990 +1
Branches 305 320 +15
=======================================
+ Hits 984 985 +1
Misses 5 5
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
related to #715 |
Render using |
Ping |
This fixes the case where you expand a table row which adds an element to the DOM, but previously would not be removed from the DOM when collapsing the row again.
This fix is useful for implementing zebra striping on a table with expandable rows, as without this fix, expanding a row and then collapsing it adds an invisible row which messes up striping.
close #714
close #715