Closed
Description
When using both hover
prop and empty
slot in the row displaying there are no results is hoverable. It looks a bit unexpected.
Example: https://codepen.io/anon/pen/BEWERe (Just hover on the text "There are no records to show")
A quick fix is just to override CSS somehow like that:
.table-hover tbody tr.b-table-empty-row:hover{ /* dont' make empty row hoverable */
background-color: inherit;
}