From cb31d4cb6d2a9b8e4e04c6abb7729c74fb8f86a1 Mon Sep 17 00:00:00 2001 From: Joel Marcey Date: Tue, 12 Jul 2016 12:13:36 -0700 Subject: [PATCH] Use tabIndex instead of tabindex Summary: There is a little bit of dogscience here, but I believe JSX is wanting `tabIndex` instead of `tabindex`. We have `tabindex` as an attribute in our Algolia search; changing it to `tabIndex` removes the warning. **Before** screenshot 2016-07-12 11 05 47 **After** screenshot 2016-07-12 11 09 47 Closes https://github.com/facebook/react-native/pull/8721 Differential Revision: D3550398 fbshipit-source-id: b7821d1940cd4c7880ee6fb907bcb16b44087750 --- website/core/AlgoliaDocSearch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/core/AlgoliaDocSearch.js b/website/core/AlgoliaDocSearch.js index 16b60fd70..69766e5aa 100644 --- a/website/core/AlgoliaDocSearch.js +++ b/website/core/AlgoliaDocSearch.js @@ -13,7 +13,7 @@ var AlgoliaDocSearch = React.createClass({ render: function() { return (
- +
); }