Skip to content

Commit

Permalink
fix: #1299
Browse files Browse the repository at this point in the history
  • Loading branch information
solarjoker committed Nov 11, 2020
1 parent 3f70874 commit a722161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/pagination/Pagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class Pagination extends Component {

return (
<div className={`${prefixCls}__jumper-input`}>
<Input innerRef={this.jumper} onKeyPress={this.gotoPage.bind(this)} onBlur={this.gotoPage.bind(this)} value={this.state.jumpTo} onChange={(e, tVal) => {
<Input ref={this.jumper} onKeyPress={this.gotoPage.bind(this)} onBlur={this.gotoPage.bind(this)} value={this.state.jumpTo} onChange={(e, tVal) => {
const val = e.target.value
if (!val) {
this.setState({
Expand Down

0 comments on commit a722161

Please sign in to comment.