trim whitespace when adding to list
This commit is contained in:
parent
da85df9d1a
commit
6e57faecb0
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ module.exports = React.createClass({
|
||||||
var check = Invite.isValidAddress(this.refs.textinput.value);
|
var check = Invite.isValidAddress(this.refs.textinput.value);
|
||||||
if (check === true || check === null) {
|
if (check === true || check === null) {
|
||||||
var inviteList = this.state.inviteList.slice();
|
var inviteList = this.state.inviteList.slice();
|
||||||
inviteList.push(this.refs.textinput.value);
|
inviteList.push(this.refs.textinput.value.trim());
|
||||||
this.setState({
|
this.setState({
|
||||||
inviteList: inviteList,
|
inviteList: inviteList,
|
||||||
queryList: [],
|
queryList: [],
|
||||||
|
|
Loading…
Reference in a new issue