Pressing Esc in left pane composer menu should go back
This commit is contained in:
parent
2d35fa8f57
commit
f05d45ac9b
12 changed files with 168 additions and 5 deletions
|
@ -86,7 +86,7 @@ export class LeftPaneChooseGroupMembersHelper extends LeftPaneHelper<
|
|||
<button
|
||||
aria-label={backButtonLabel}
|
||||
className="module-left-pane__header__contents__back-button"
|
||||
onClick={startComposing}
|
||||
onClick={this.getBackAction({ startComposing })}
|
||||
title={backButtonLabel}
|
||||
type="button"
|
||||
/>
|
||||
|
@ -97,6 +97,14 @@ export class LeftPaneChooseGroupMembersHelper extends LeftPaneHelper<
|
|||
);
|
||||
}
|
||||
|
||||
getBackAction({
|
||||
startComposing,
|
||||
}: {
|
||||
startComposing: () => void;
|
||||
}): () => void {
|
||||
return startComposing;
|
||||
}
|
||||
|
||||
getPreRowsNode({
|
||||
closeCantAddContactToGroupModal,
|
||||
closeMaximumGroupSizeModal,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue