diff --git a/Libraries/Components/TextInput/TextInput.js b/Libraries/Components/TextInput/TextInput.js index 4bd556a83629d4..ce0436c27b384f 100644 --- a/Libraries/Components/TextInput/TextInput.js +++ b/Libraries/Components/TextInput/TextInput.js @@ -1267,6 +1267,9 @@ const TextInput = createReactClass({ }, _onBlur: function(event: BlurEvent) { + // This is a hack to fix https://fburl.com/toehyir8 + // @todo(rsnara) Figure out why this is necessary. + this.blur(); if (this.props.onBlur) { this.props.onBlur(event); }