mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
Re-focus the composer on dialogue quit (#10007)
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
4574c665ea
commit
cf7ab9a8c6
2 changed files with 16 additions and 4 deletions
|
@ -339,9 +339,15 @@ class EditMessageComposer extends React.Component<IEditMessageComposerProps, ISt
|
|||
} else {
|
||||
shouldSend = false;
|
||||
}
|
||||
} else if (!(await shouldSendAnyway(commandText))) {
|
||||
} else {
|
||||
const sendAnyway = await shouldSendAnyway(commandText);
|
||||
// re-focus the composer after QuestionDialog is closed
|
||||
dis.dispatch({
|
||||
action: Action.FocusAComposer,
|
||||
context: this.context.timelineRenderingType,
|
||||
});
|
||||
// if !sendAnyway bail to let the user edit the composer and try again
|
||||
return;
|
||||
if (!sendAnyway) return;
|
||||
}
|
||||
}
|
||||
if (shouldSend) {
|
||||
|
|
|
@ -385,9 +385,15 @@ export class SendMessageComposer extends React.Component<ISendMessageComposerPro
|
|||
} else {
|
||||
shouldSend = false;
|
||||
}
|
||||
} else if (!(await shouldSendAnyway(commandText))) {
|
||||
} else {
|
||||
const sendAnyway = await shouldSendAnyway(commandText);
|
||||
// re-focus the composer after QuestionDialog is closed
|
||||
dis.dispatch({
|
||||
action: Action.FocusAComposer,
|
||||
context: this.context.timelineRenderingType,
|
||||
});
|
||||
// if !sendAnyway bail to let the user edit the composer and try again
|
||||
return;
|
||||
if (!sendAnyway) return;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue