Skip to content

Commit 875a271

Browse files
authored
Update table.js
1 parent ef11ecd commit 875a271

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/table/table.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -706,10 +706,10 @@ export default {
706706
const $rows = []
707707

708708
// 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())
710710

711711
// Add the item data rows or the busy slot
712-
const $busy = this.renderBusy(h)
712+
const $busy = this.renderBusy()
713713
if ($busy) {
714714
$rows.push($busy)
715715
} else {
@@ -721,10 +721,10 @@ export default {
721721
}
722722

723723
// Empty Items / Empty Filtered Row slot
724-
$rows.push(this.renderEmpty(h))
724+
$rows.push(this.renderEmpty())
725725

726726
// 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())
728728

729729
// Is tbody transition enabled
730730
const isTransGroup = this.tbodyTransitionProps || this.tbodyTransitionHandlers

0 commit comments

Comments
 (0)