From cd5a460b2b257029ee0e1ff8d1544ea3a88fa317 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 9 May 2019 22:30:45 +0100 Subject: [PATCH] Iterate PR based on feedback Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- res/css/views/dialogs/_DevtoolsDialog.scss | 1 + src/components/views/dialogs/DevtoolsDialog.js | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/res/css/views/dialogs/_DevtoolsDialog.scss b/res/css/views/dialogs/_DevtoolsDialog.scss index f38191445c..2f01f3ecc6 100644 --- a/res/css/views/dialogs/_DevtoolsDialog.scss +++ b/res/css/views/dialogs/_DevtoolsDialog.scss @@ -19,6 +19,7 @@ limitations under the License. } .mx_DevTools_ServersInRoomList_button { + /* Set the cursor back to default as `.mx_Dialog button` sets it to pointer */ cursor: default !important; } diff --git a/src/components/views/dialogs/DevtoolsDialog.js b/src/components/views/dialogs/DevtoolsDialog.js index f7ddb542ae..0835c41bb9 100644 --- a/src/components/views/dialogs/DevtoolsDialog.js +++ b/src/components/views/dialogs/DevtoolsDialog.js @@ -561,8 +561,6 @@ class ServersInRoomList extends DevtoolsComponent { constructor(props, context) { super(props, context); - this.onQuery = this.onQuery.bind(this); - const room = MatrixClientPeg.get().getRoom(this.context.roomId); const servers = new Set(); room.currentState.getStateEvents("m.room.member").forEach(ev => servers.add(ev.getSender().split(":")[1])); @@ -576,7 +574,7 @@ class ServersInRoomList extends DevtoolsComponent { }; } - onQuery(query) { + onQuery = (query) => { this.setState({ query }); }