1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

recommit bwindels commited changes to refactor check logic after rebase mistake

This commit is contained in:
thobyv-kismat
2020-03-26 14:03:38 +01:00
parent 2bd112ca7c
commit 1713006958

View File

@@ -447,7 +447,7 @@ export default class BasicMessageEditor extends React.Component {
} else if (event.key === Key.TAB) {
this._tabCompleteName();
handled = true;
} else if (event.key === Key.BACKSPACE || Key.DELETE) {
} else if (event.key === Key.BACKSPACE || event.key === Key.DELETE) {
this._formatBarRef.hide();
}
}