From d496aef0a42abb9fdd17a7c8ac95c2653c0172b8 Mon Sep 17 00:00:00 2001 From: Markus Date: Thu, 13 Jul 2023 22:56:38 +0200 Subject: [PATCH] fixed linting --- webapp/components/Chat/Chat.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/components/Chat/Chat.vue b/webapp/components/Chat/Chat.vue index 855f1e14b..eb7d7124a 100644 --- a/webapp/components/Chat/Chat.vue +++ b/webapp/components/Chat/Chat.vue @@ -164,7 +164,7 @@ export default { return chatStyle.STYLE.light }, textMessages() { - return{ + return { ROOMS_EMPTY: this.$t('chat.roomsEmpty'), ROOM_EMPTY: this.$t('chat.roomEmpty'), NEW_MESSAGES: this.$t('chat.newMessages'), @@ -178,7 +178,7 @@ export default { IS_TYPING: this.$t('chat.isTyping'), CANCEL_SELECT_MESSAGE: this.$t('chat.cancelSelectMessage'), } - } + }, }, methods: { fetchMessages({ room, options = {} }) {