mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 04:21:57 +03:00
don't lose focus after a / command
This commit is contained in:
parent
e06763cd59
commit
4c3588d260
1 changed files with 3 additions and 2 deletions
|
@ -745,9 +745,10 @@ export default class MessageComposerInput extends React.Component {
|
|||
});
|
||||
}
|
||||
if (cmd.promise) {
|
||||
cmd.promise.then(function() {
|
||||
cmd.promise.then(()=>{
|
||||
console.log("Command success.");
|
||||
}, function(err) {
|
||||
this.refs.editor.focus();
|
||||
}, (err)=>{
|
||||
console.error("Command failure: %s", err);
|
||||
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
||||
Modal.createTrackedDialog('Server error', '', ErrorDialog, {
|
||||
|
|
Loading…
Reference in a new issue