diff --git a/src/react-components/profile-entry-panel.js b/src/react-components/profile-entry-panel.js index 5c39c773742e706c019e78d4c4af0a0a8c26a7d6..40973131ee8616114129cc23e8d2ca609726277a 100644 --- a/src/react-components/profile-entry-panel.js +++ b/src/react-components/profile-entry-panel.js @@ -96,19 +96,24 @@ class ProfileEntryPanel extends Component { </div> <input className="profile-entry__form-field-text" - value={this.state.display_name} onChange={(e) => this.setState({display_name: e.target.value})} - required pattern={SCHEMA.definitions.profile.properties.display_name.pattern} + value={this.state.display_name} + onChange={e => this.setState({ display_name: e.target.value })} + required + pattern={SCHEMA.definitions.profile.properties.display_name.pattern} title={formatMessage({ id: "profile.display_name.validation_warning" })} - ref={inp => this.nameInput = inp}/> + ref={inp => (this.nameInput = inp)} + /> <iframe className="profile-entry__avatar-selector" src={ /* HACK: Have to account for the smoke test server like this. Feels wrong though. */ - `/${/smoke/i.test(location.hostname) ? 'smoke-' : ''}avatar-selector.html#avatar_id=${this.state.avatar_id}` + `/${/smoke/i.test(location.hostname) ? "smoke-" : ""}avatar-selector.html#avatar_id=${ + this.state.avatar_id + }` } - ref={ifr => this.avatarSelector = ifr}></iframe> - <input className="profile-entry__form-submit" type="submit" value={formatMessage({ id: "profile.save" }) }/> - </div> + ref={ifr => (this.avatarSelector = ifr)} + /> + <input className="profile-entry__form-submit" type="submit" value={formatMessage({ id: "profile.save" })} /> </form> </div> );