recommit bwindels commited changes to refactor check logic after rebase mistake

pull/21833/head
thobyv-kismat 2020-03-26 14:03:38 +01:00
parent 2bd112ca7c
commit 1713006958
1 changed files with 1 additions and 1 deletions

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();
}
}