From ea368cd0f308831550ba27d28f682a17ae5e39cc Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 19 Jul 2023 15:09:13 +0200 Subject: [PATCH] lint fixes --- webapp/components/Chat/Chat.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webapp/components/Chat/Chat.vue b/webapp/components/Chat/Chat.vue index af8a2490f..63cf045e8 100644 --- a/webapp/components/Chat/Chat.vue +++ b/webapp/components/Chat/Chat.vue @@ -353,7 +353,9 @@ export default { async sendMessage(message) { try { - const { data: { CreateMessage: createdMessage }} = await this.$apollo.mutate({ + const { + data: { CreateMessage: createdMessage }, + } = await this.$apollo.mutate({ mutation: createMessageMutation(), variables: { roomId: message.roomId,