diff --git a/changelog.d/chat_vew.add b/changelog.d/chat_vew.add new file mode 100644 index 000000000..7e649d454 --- /dev/null +++ b/changelog.d/chat_vew.add @@ -0,0 +1 @@ +Chat view for threads diff --git a/src/App.js b/src/App.js index f3f3872bf..4ce6f1abc 100644 --- a/src/App.js +++ b/src/App.js @@ -186,7 +186,11 @@ 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 33485aebe..f48b75c65 100644 --- a/src/components/chat_view/chat_view.js +++ b/src/components/chat_view/chat_view.js @@ -367,7 +367,6 @@ 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 146d7d043..e6bef0f84 100644 --- a/src/components/chat_view/chat_view.vue +++ b/src/components/chat_view/chat_view.vue @@ -21,8 +21,9 @@