diff --git a/webapp/components/Chat/Chat.vue b/webapp/components/Chat/Chat.vue
index d2d0d5f57..d77993e36 100644
--- a/webapp/components/Chat/Chat.vue
+++ b/webapp/components/Chat/Chat.vue
@@ -102,8 +102,7 @@
@@ -153,7 +152,6 @@ import { mapGetters, mapMutations } from 'vuex'
const EMPTY_ACTIONS = JSON.stringify([])
const ROOM_PAGE_SIZE = 10
const MESSAGE_PAGE_SIZE = 20
-const RESPONSIVE_BREAKPOINT = 600
export default {
name: 'Chat',
@@ -277,6 +275,9 @@ export default {
}
return { name: 'chat', query }
},
+ groupRooms() {
+ return this.rooms.filter((r) => r.isGroupRoom)
+ },
selectedRoomProfile() {
if (!this.selectedRoom) return null
return this.selectedRoom.isGroupRoom