You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe this is a bug. Say I have my table with trClassName="foo" and selectRow={{ className: "bar", ... }} props. As it's clear from this code, when the row is selected, the class parameter will be foobar, instead of foo bar which is what I would expect. A workaround is to do selectRow={{ className: "bar ", ... }} but it feels kind of hacky. I can work on a fix if you agree
The text was updated successfully, but these errors were encountered:
@itajaja, yes, it's a bug. react-bootstrap-table has been used classnames but some place did not used, it's also a improvement for handling class. Anyway, PR is welcome.
I believe this is a bug. Say I have my table with
trClassName="foo"
andselectRow={{ className: "bar", ... }}
props. As it's clear from this code, when the row is selected, the class parameter will befoobar
, instead offoo bar
which is what I would expect. A workaround is to doselectRow={{ className: "bar ", ... }}
but it feels kind of hacky. I can work on a fix if you agreeThe text was updated successfully, but these errors were encountered: