Conversation
|
Thank you for your contribution. If I remember correctly, with this change, the computation will not work correctly anymore, because the border heights will simultaneously count towards one and the other row height. Use the Feel free to suggest a change in the documentation if you agree and think that it was not yet documented properly. On a side note, I would have recommended to simply override this styling in your own stylesheet (you can e.g. add a class to the table and refer to it that way), rather than requiring every user of this library to have that styling, it's not like everyone is using tailwindcss. |
|
In my case, toggling I will look for a better solution! |
You get this solution also e.g. using <VirtualTable className={myClass} …
<!-- some other code -->
<style>
.myClass {
border-collapse: initial !important;
}
</style> |
fix an issue #13