From 3c70fab7c6b6a5cf64b9427177711618df6424d4 Mon Sep 17 00:00:00 2001 From: Reto Date: Tue, 30 Nov 2021 21:01:45 +0100 Subject: [PATCH] Fix vue/this-in-template linter warning (#4418) --- client/components/Chat.vue | 4 ++-- client/components/RoutedChat.vue | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/components/Chat.vue b/client/components/Chat.vue index c0d665d7..350ecf11 100644 --- a/client/components/Chat.vue +++ b/client/components/Chat.vue @@ -110,11 +110,11 @@
- {{ this.$store.state.currentUserVisibleError }} + {{ $store.state.currentUserVisibleError }}
diff --git a/client/components/RoutedChat.vue b/client/components/RoutedChat.vue index 46a79bea..50a40898 100644 --- a/client/components/RoutedChat.vue +++ b/client/components/RoutedChat.vue @@ -3,7 +3,7 @@ v-if="activeChannel" :network="activeChannel.network" :channel="activeChannel.channel" - :focused="this.$route.query.focused" + :focused="$route.query.focused" />