add onBlur incase onChange doesn't fire

This commit is contained in:
Ryan Tharp 2020-04-01 21:43:07 -07:00
parent e78426de99
commit 34a1fdbfec

View file

@ -45,6 +45,7 @@ export class SessionIdEditable extends React.PureComponent<Props> {
spellCheck={false}
onKeyDown={this.handleKeyDown}
onChange={this.handleChange}
onBlur={this.handleChange}
value={value || text}
maxLength={maxLength}
/>