From 7f4054df76b6fdf44ef84a89487ef1381e078b95 Mon Sep 17 00:00:00 2001 From: Mike Adams Date: Wed, 15 Mar 2017 16:53:17 -0700 Subject: [PATCH] Update FlatList.js Summary: Only a small amendment, but took me a little bit to figure out why this wasn't working. Closes https://github.com/facebook/react-native/pull/12706 Differential Revision: D4656700 fbshipit-source-id: d6038581aa70e96a2be775a7a9786e8c7e64f762 --- Libraries/CustomComponents/Lists/FlatList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/CustomComponents/Lists/FlatList.js b/Libraries/CustomComponents/Lists/FlatList.js index 10a47cc46..5fedff5d6 100644 --- a/Libraries/CustomComponents/Lists/FlatList.js +++ b/Libraries/CustomComponents/Lists/FlatList.js @@ -51,7 +51,7 @@ type RequiredProps = { * _renderItem = ({item}) => ( * this._onPress(item)}> * {item.title}} - * + * * ); * ... *