Skip to content

Commit

Permalink
Table: Fix wrong fixed height temporary. (ElemeFE#3019)
Browse files Browse the repository at this point in the history
  • Loading branch information
liril-net authored and QingWei-Li committed Feb 24, 2017
1 parent 82a3685 commit 537e1e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/table/src/table-body.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default {
on-mouseenter={ ($event) => this.handleCellMouseEnter($event, row) }
on-mouseleave={ this.handleCellMouseLeave }>
{
columnsHidden[cellIndex] ? '' : column.renderCell.call(this._renderProxy, h, { row, column, $index, store: this.store, _self: this.context || this.table.$vnode.context })
column.renderCell.call(this._renderProxy, h, { row, column, $index, store: this.store, _self: this.context || this.table.$vnode.context }, columnsHidden[cellIndex])
}
</td>
)
Expand Down

0 comments on commit 537e1e0

Please sign in to comment.