Skip to content

Commit

Permalink
Merge 0da6e23 into 50a464e
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahSun committed Sep 2, 2021
2 parents 50a464e + 0da6e23 commit ffde72d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/table/src/table-body.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ export default {
const data = {
store: this.store,
_self: this.context || this.table.$vnode.context,
fixed: this.fixed,
column: columnData,
row,
$index
Expand Down
2 changes: 1 addition & 1 deletion packages/table/src/table-header.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default {
<div class={ ['cell', column.filteredValue && column.filteredValue.length > 0 ? 'highlight' : '', column.labelClassName] }>
{
column.renderHeader
? column.renderHeader.call(this._renderProxy, h, { column, $index: cellIndex, store: this.store, _self: this.$parent.$vnode.context })
? column.renderHeader.call(this._renderProxy, h, { column, fixed: this.fixed, $index: cellIndex, store: this.store, _self: this.$parent.$vnode.context })
: column.label
}
{
Expand Down

0 comments on commit ffde72d

Please sign in to comment.