Backspace hotkey should override default behaviour (#32826)
parent
e22ec25077
commit
157fba4698
|
@ -482,7 +482,9 @@ class UI extends PureComponent {
|
|||
}
|
||||
};
|
||||
|
||||
handleHotkeyBack = () => {
|
||||
handleHotkeyBack = e => {
|
||||
e.preventDefault();
|
||||
|
||||
const { history } = this.props;
|
||||
|
||||
if (history.location?.state?.fromMastodon) {
|
||||
|
|
Loading…
Reference in New Issue