From ccd065bcc7a62290af0822e260a40633ddcb4433 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sat, 4 Apr 2026 03:33:10 +0200 Subject: [PATCH] lint fix --- webapp/components/Chat/Chat.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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