Skip to content

Commit

Permalink
Remove blurring from UnderlineField (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
osdnk authored Jan 30, 2020
1 parent ae9e1e0 commit 597f2d3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/fields/UnderlineField.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,9 @@ export default class UnderlineField extends PureComponent {

this.setState({ isFocused: false });

if (this.props.onBlur) this.props.onBlur(...props);
store.dispatch(setSelectedInputId(null));
if (this.props.onBlur) {
this.props.onBlur(...props);
}
};

onChange = event => {
Expand Down

0 comments on commit 597f2d3

Please sign in to comment.