Skip to content

Commit

Permalink
Merge pull request #715 from XiaoMi/hotfix/tableRightFixBug
Browse files Browse the repository at this point in the history
Hotfix/table right fix bug
  • Loading branch information
solarjoker authored Oct 10, 2019
2 parents 3cac0a0 + a4c0bef commit d3008f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/table/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ class Table extends Component {

if (rightFixColumns.length > 0) {
scrollTable.push(
<div className={prifix('table-fixed-right')} ref={this.fixRight} key='right'>
<div className={prifix('table-fixed-right')} ref={this.fixRight} key='right' style={{display: 'none'}}>
<div className={prifix('table-outer')}>
<div className={prifix('table-inner')}>
<TableContent style={{width: 'auto', ...style}} className={prifix('table-fixed')} {...Object.assign({}, {...props}, {highlightRows, parent: this, columns: rightFixColumns, headerColumns, name: this.props.name}, {dataSource, highlightCols}, {cbs: this.cbs, fetch: this.fetch, t: this})} />
Expand Down

0 comments on commit d3008f8

Please sign in to comment.