From 4bb58e59f70ef41da3bf50aa93ee771d23c4bed1 Mon Sep 17 00:00:00 2001 From: Quentin Valmori Date: Wed, 30 Sep 2015 17:17:43 -0700 Subject: [PATCH] Fix one warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: translucent is a boolean not a stringCloses https://github.com/facebook/react-native/pull/3134 Reviewed By: @​svcscm Differential Revision: D2495517 Pulled By: @frantic --- Examples/UIExplorer/NavigatorIOSColorsExample.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/UIExplorer/NavigatorIOSColorsExample.js b/Examples/UIExplorer/NavigatorIOSColorsExample.js index 741186902..4078cac6d 100644 --- a/Examples/UIExplorer/NavigatorIOSColorsExample.js +++ b/Examples/UIExplorer/NavigatorIOSColorsExample.js @@ -66,7 +66,7 @@ var NavigatorIOSColors = React.createClass({ tintColor="#FFFFFF" barTintColor="#183E63" titleTextColor="#FFFFFF" - translucent="true" + translucent={true} /> ); },