From 2f9b56eb3a3efc90b90d727303418c6c24ac2198 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Mon, 9 Jan 2017 14:22:21 -0500 Subject: Fixed onBlur being called when not given as a prop (#5024) --- webapp/components/suggestion/suggestion_box.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webapp/components/suggestion/suggestion_box.jsx b/webapp/components/suggestion/suggestion_box.jsx index fb55b0588..e9f7c3699 100644 --- a/webapp/components/suggestion/suggestion_box.jsx +++ b/webapp/components/suggestion/suggestion_box.jsx @@ -64,7 +64,10 @@ export default class SuggestionBox extends React.Component { // Delay this slightly so that we don't clear the suggestions before we run click handlers on SuggestionList GlobalActions.emitClearSuggestions(this.suggestionId); }, 100); - this.props.onBlur(); + + if (this.props.onBlur) { + this.props.onBlur(); + } } handleChange(e) { -- cgit v1.2.3-1-g7c22