Skip to content

Commit

Permalink
##
Browse files Browse the repository at this point in the history
修复表格右冻结bug
  • Loading branch information
surui1 committed Oct 10, 2019
1 parent 3cac0a0 commit a4c0bef
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 a4c0bef

Please sign in to comment.