From 2d5506f75b6dda5a843ba0e3460eb0bf9b5269c4 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sat, 4 Apr 2026 02:08:27 +0200 Subject: [PATCH] fix loading spinner for empty chat --- webapp/components/Chat/Chat.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/components/Chat/Chat.vue b/webapp/components/Chat/Chat.vue index 759183869..432616424 100644 --- a/webapp/components/Chat/Chat.vue +++ b/webapp/components/Chat/Chat.vue @@ -997,6 +997,7 @@ export default { _virtualUserId: userId, } this.rooms = [virtualRoom, ...this.rooms] + this.roomsLoaded = true this.loadingRooms = false this.$nextTick(() => this.selectRoom(virtualRoom)) },