bug: Fixes expanded reply box is not closing after the message is sent (#3537)
This commit is contained in:
parent
c2519ea1ea
commit
178cb34319
2 changed files with 2 additions and 1 deletions
|
@ -112,7 +112,7 @@
|
||||||
:conversation-id="currentChat.id"
|
:conversation-id="currentChat.id"
|
||||||
:is-a-tweet="isATweet"
|
:is-a-tweet="isATweet"
|
||||||
:selected-tweet="selectedTweet"
|
:selected-tweet="selectedTweet"
|
||||||
:popout-reply-box="isPopoutReplyBox"
|
:popout-reply-box.sync="isPopoutReplyBox"
|
||||||
@click="showPopoutReplyBox"
|
@click="showPopoutReplyBox"
|
||||||
@scrollToMessage="scrollToBottom"
|
@scrollToMessage="scrollToBottom"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -378,6 +378,7 @@ export default {
|
||||||
this.showAlert(errorMessage);
|
this.showAlert(errorMessage);
|
||||||
}
|
}
|
||||||
this.hideEmojiPicker();
|
this.hideEmojiPicker();
|
||||||
|
this.$emit('update:popoutReplyBox', false);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
replaceText(message) {
|
replaceText(message) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue