From 8d653672f2ad7ac487051c4ed08dfb53d5a28d49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20B=C3=BCchele?= Date: Wed, 28 Aug 2019 10:35:10 -0700 Subject: [PATCH] fix keyboard navigation Summary: Keyboard events were not handled correctly. This was because the tabIndex was not set correctly. Maybe a regression from the TypeScript conversion. Reviewed By: passy Differential Revision: D17079157 fbshipit-source-id: 752853c0d761da67c7b09f50b531abf58bc7feec --- src/ui/components/elements-inspector/elements.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/components/elements-inspector/elements.tsx b/src/ui/components/elements-inspector/elements.tsx index 332712b2e..3b29ec236 100644 --- a/src/ui/components/elements-inspector/elements.tsx +++ b/src/ui/components/elements-inspector/elements.tsx @@ -633,7 +633,7 @@ export class Elements extends PureComponent { render() { return ( - + {this.state.flatElements.map(this.buildRow)}