From 957f5e4c60c1ffd534d2a57b572d2445944d8e96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Tue, 1 Mar 2022 17:25:07 +0100 Subject: [PATCH] Fix backspace not working MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/components/views/dialogs/InviteDialog.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/views/dialogs/InviteDialog.tsx b/src/components/views/dialogs/InviteDialog.tsx index 0875b87c5cd..15787efd818 100644 --- a/src/components/views/dialogs/InviteDialog.tsx +++ b/src/components/views/dialogs/InviteDialog.tsx @@ -805,7 +805,7 @@ export default class InviteDialog extends React.PureComponent { if (this.state.busy) return; - let handled = true; + let handled = false; const value = e.target.value.trim(); const action = getKeyBindingsManager().getAccessibilityAction(e); @@ -815,21 +815,22 @@ export default class InviteDialog extends React.PureComponent