mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Fixed ability to be able to delete a specific invite field within the invite new member form instead of just removing the bottom one every time
This commit is contained in:
@@ -123,7 +123,7 @@ module.exports = React.createClass({
|
||||
<div key={"key" + index}>
|
||||
{ true ?
|
||||
<div>
|
||||
<button type="button" className="btn remove__member" onClick={function(){self.removeInviteFields(index);}}>×</button>
|
||||
<button type="button" className="btn remove__member" onClick={this.removeInviteFields.bind(this, index)}>×</button>
|
||||
</div>
|
||||
: ""}
|
||||
<div className={ email_error ? "form-group invite has-error" : "form-group invite" }>
|
||||
|
||||
Reference in New Issue
Block a user