Removed extraneous conditional

Этот коммит содержится в:
Reed Garmsen
2015-06-18 17:16:59 -07:00
родитель 4e8e00e94f
Коммит c94d6a1c00

Просмотреть файл

@@ -121,11 +121,9 @@ module.exports = React.createClass({
invite_sections[index] = (
<div key={"key" + index}>
{ true ?
<div>
<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" }>
<input onKeyUp={this.displayNameKeyUp} type="text" ref={"email"+index} className="form-control" placeholder="email@domain.com" maxLength="64" />
{ email_error }