From eb45b00b32b1dbc7d8a2612ab0265c9342a24d7a Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 23 Oct 2017 11:40:25 +0100 Subject: [PATCH] fix bad tab completion Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/components/views/dialogs/DevtoolsDialog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/views/dialogs/DevtoolsDialog.js b/src/components/views/dialogs/DevtoolsDialog.js index 9300a1855c..7c61e4623d 100644 --- a/src/components/views/dialogs/DevtoolsDialog.js +++ b/src/components/views/dialogs/DevtoolsDialog.js @@ -237,7 +237,7 @@ class RoomStateExplorer extends React.Component { if (this.state.eventType === null) { Object.keys(this.roomStateEvents).forEach((evType) => { // Skip this entry if does not contain search query - if (this.state.query && !evType.toLowerCase().includes(this.state.query.toLocaleLowerCase())) return; + if (this.state.query && !evType.toLowerCase().includes(this.state.query.toLowerCase())) return; const stateGroup = this.roomStateEvents[evType]; const stateKeys = Object.keys(stateGroup); @@ -258,7 +258,7 @@ class RoomStateExplorer extends React.Component { const stateGroup = this.roomStateEvents[evType]; Object.keys(stateGroup).forEach((stateKey) => { // Skip this entry if does not contain search query - if (this.state.query && !stateKey.toLowerCase().includes(this.state.query.toLocaleLowerCase())) return; + if (this.state.query && !stateKey.toLowerCase().includes(this.state.query.toLowerCase())) return; const ev = stateGroup[stateKey]; rows.push(