docs: select/demo/combobox.md - English translation (#3010)

English translation of labels and comments
This commit is contained in:
Marius Ileana 2016-09-12 05:10:07 +03:00 committed by Benjy Cui
parent ced5c9a9ed
commit bde1711597

View File

@ -41,13 +41,13 @@ const Test = React.createClass({
this.setState({ options });
},
render() {
// filterOption 需要设置为 false数据是动态设置的
// filterOption needs to be falseas the value is dynamically generated
return (
<Select combobox
style={{ width: 200 }}
onChange={this.handleChange}
filterOption={false}
placeholder="请输入账户名"
placeholder="Enter the account name"
>
{this.state.options}
</Select>