trim whitespace when adding to list

pull/21833/head
Matthew Hodgson 2016-09-17 16:14:02 +01:00
parent da85df9d1a
commit 6e57faecb0
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ module.exports = React.createClass({
var check = Invite.isValidAddress(this.refs.textinput.value);
if (check === true || check === null) {
var inviteList = this.state.inviteList.slice();
inviteList.push(this.refs.textinput.value);
inviteList.push(this.refs.textinput.value.trim());
this.setState({
inviteList: inviteList,
queryList: [],