Fix vue/this-in-template linter warning (#4418)

This commit is contained in:
Reto 2021-11-30 21:01:45 +01:00 committed by GitHub
parent 212212fe70
commit 3c70fab7c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -110,11 +110,11 @@
</div>
</div>
<div
v-if="this.$store.state.currentUserVisibleError"
v-if="$store.state.currentUserVisibleError"
id="user-visible-error"
@click="hideUserVisibleError"
>
{{ this.$store.state.currentUserVisibleError }}
{{ $store.state.currentUserVisibleError }}
</div>
<ChatInput :network="network" :channel="channel" />
</div>

View file

@ -3,7 +3,7 @@
v-if="activeChannel"
:network="activeChannel.network"
:channel="activeChannel.channel"
:focused="this.$route.query.focused"
:focused="$route.query.focused"
/>
</template>