diff --git a/changelog.d/chat_vew.add b/changelog.d/chat_vew.add deleted file mode 100644 index 7e649d454..000000000 --- a/changelog.d/chat_vew.add +++ /dev/null @@ -1 +0,0 @@ -Chat view for threads diff --git a/src/App.js b/src/App.js index 4ce6f1abc..f3f3872bf 100644 --- a/src/App.js +++ b/src/App.js @@ -186,11 +186,7 @@ export default { return useShoutStore().joined }, isChats() { - return ( - this.$route.name === 'chat' || - this.$route.name === 'chats' || - this.$route.name === 'conversation2' - ) + return this.$route.name === 'chat' || this.$route.name === 'chats' || this.$route.name === 'conversation2' }, isListEdit() { return this.$route.name === 'lists-edit' diff --git a/src/components/chat_view/chat_view.js b/src/components/chat_view/chat_view.js index f48b75c65..33485aebe 100644 --- a/src/components/chat_view/chat_view.js +++ b/src/components/chat_view/chat_view.js @@ -367,6 +367,7 @@ const Chat = { } }, async startFetching() { + console.log(this.statusId, this.chatUserId) if (!this.isConversation) { try { const { data } = await getOrCreateChat({ diff --git a/src/components/chat_view/chat_view.vue b/src/components/chat_view/chat_view.vue index e6bef0f84..146d7d043 100644 --- a/src/components/chat_view/chat_view.vue +++ b/src/components/chat_view/chat_view.vue @@ -21,9 +21,8 @@