From 54cb03c8d69be0ee3faae636b88418c4a2a15871 Mon Sep 17 00:00:00 2001 From: Mike Grabowski Date: Thu, 3 Jan 2019 19:13:30 +0100 Subject: [PATCH] Fix a ESLint error --- Libraries/Components/TextInput/TextInput.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Components/TextInput/TextInput.js b/Libraries/Components/TextInput/TextInput.js index 0c49697570c..f5551cb0f7c 100644 --- a/Libraries/Components/TextInput/TextInput.js +++ b/Libraries/Components/TextInput/TextInput.js @@ -1201,7 +1201,7 @@ const TextInput = createReactClass({ // 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); }