From 39da33a7bf5a55c8398708fb7294e9ebc56249df Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Thu, 4 Apr 2019 16:38:49 +0100 Subject: [PATCH] Fix regex --- src/devtools/views/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devtools/views/utils.js b/src/devtools/views/utils.js index 27f9fdae75..00fb6ea9b7 100644 --- a/src/devtools/views/utils.js +++ b/src/devtools/views/utils.js @@ -26,8 +26,8 @@ export function createRegExp(string: string): RegExp { // 'ListItem' // but not 'InviteMom' '(^[' + - firstLetter + firstLetter.toLowerCase() + + firstLetter.toUpperCase() + ']' + '|' + firstLetter.toUpperCase() +