From ab91413bf30aa7db32e3aee82e15b4be77a5bc9d Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sat, 15 Jul 2023 10:43:08 +0200 Subject: [PATCH] typo --- webapp/components/Chat/Chat.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/components/Chat/Chat.vue b/webapp/components/Chat/Chat.vue index 7d258c2d0..96bdef518 100644 --- a/webapp/components/Chat/Chat.vue +++ b/webapp/components/Chat/Chat.vue @@ -281,7 +281,7 @@ export default { this.$toast.error(error.message) } this.fetchMessages({ - room: this.rooms.find((r) => r.roomId === roomId), + room: this.rooms.find((r) => r.roomId === message.roomId), options: { refetch: true }, }) },