mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
Bug : Inbox Filter indicator is removed when a conversation is selected (#535)
This commit is contained in:
committed by
GitHub
parent
bc884ae184
commit
330bf87f08
@@ -46,7 +46,7 @@ import getEmojiSVG from '../emoji/utils';
|
||||
import conversationMixin from '../../../mixins/conversations';
|
||||
import timeMixin from '../../../mixins/time';
|
||||
import router from '../../../routes';
|
||||
import { frontendURL } from '../../../helper/URLHelper';
|
||||
import { frontendURL, conversationUrl } from '../../../helper/URLHelper';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
@@ -95,9 +95,9 @@ export default {
|
||||
|
||||
methods: {
|
||||
cardClick(chat) {
|
||||
router.push({
|
||||
path: frontendURL(`conversations/${chat.id}`),
|
||||
});
|
||||
const { activeInbox } = this;
|
||||
const path = conversationUrl(activeInbox, chat.id);
|
||||
router.push({ path: frontendURL(path) });
|
||||
},
|
||||
extractMessageText(chatItem) {
|
||||
if (chatItem.content) {
|
||||
|
||||
Reference in New Issue
Block a user