forked from abner/for-legacy-web
Merge pull request #17 from janderedev/pr-2
ESC now removes the last attachment. Fixes #16ui/bot-profile
commit
0d732ededb
|
|
@ -477,8 +477,21 @@ export default observer(({ channel }: Props) => {
|
|||
return send();
|
||||
}
|
||||
|
||||
if (e.key === "Escape" && replies.length > 0) {
|
||||
setReplies(replies.slice(0, -1));
|
||||
if (e.key === "Escape") {
|
||||
if (replies.length > 0) {
|
||||
setReplies(replies.slice(0, -1));
|
||||
} else if (
|
||||
uploadState.type === "attached" &&
|
||||
uploadState.files.length > 0
|
||||
) {
|
||||
setUploadState({
|
||||
type:
|
||||
uploadState.files.length > 1
|
||||
? "attached"
|
||||
: "none",
|
||||
files: uploadState.files.slice(0, -1),
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
debouncedStopTyping(true);
|
||||
|
|
|
|||
Loading…
Reference in New Issue