Skip to content

Commit

Permalink
Fixed #374
Browse files Browse the repository at this point in the history
  • Loading branch information
Merve7 committed Apr 5, 2018
1 parent 3795eff commit dc6cc57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/chips/Chips.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export class Chips extends Component {
}

var inputToken = <li className="ui-chips-input-token">
<InputText ref={(el) => this.inputEL = ReactDOM.findDOMNode(el)} type="text" disabled={this.props.disabled||this.maxedOut()}
<InputText ref={(el) => this.inputEL = ReactDOM.findDOMNode(el)} placeholder={this.props.placeholder} type="text" disabled={this.props.disabled||this.maxedOut()}
onKeyDown={(event) => this.onKeydown(event)} onFocus={this.onFocus.bind(this)} onBlur={this.onBlur.bind(this)}/>
</li>;

Expand Down

0 comments on commit dc6cc57

Please sign in to comment.