File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -706,10 +706,10 @@ export default {
706
706
const $rows = [ ]
707
707
708
708
// Add static Top Row slot (hidden in visibly stacked mode as we can't control the data-label)
709
- $rows . push ( this . renderTopRow ( h ) )
709
+ $rows . push ( this . renderTopRow ( ) )
710
710
711
711
// Add the item data rows or the busy slot
712
- const $busy = this . renderBusy ( h )
712
+ const $busy = this . renderBusy ( )
713
713
if ( $busy ) {
714
714
$rows . push ( $busy )
715
715
} else {
@@ -721,10 +721,10 @@ export default {
721
721
}
722
722
723
723
// Empty Items / Empty Filtered Row slot
724
- $rows . push ( this . renderEmpty ( h ) )
724
+ $rows . push ( this . renderEmpty ( ) )
725
725
726
726
// Static bottom row slot (hidden in visibly stacked mode as we can't control the data-label)
727
- $rows . push ( this . renderBottomRow ( h ) )
727
+ $rows . push ( this . renderBottomRow ( ) )
728
728
729
729
// Is tbody transition enabled
730
730
const isTransGroup = this . tbodyTransitionProps || this . tbodyTransitionHandlers
You can’t perform that action at this time.
0 commit comments