Fix vue/this-in-template linter warning (#4418)
This commit is contained in:
parent
212212fe70
commit
3c70fab7c6
@ -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>
|
||||
|
@ -3,7 +3,7 @@
|
||||
v-if="activeChannel"
|
||||
:network="activeChannel.network"
|
||||
:channel="activeChannel.channel"
|
||||
:focused="this.$route.query.focused"
|
||||
:focused="$route.query.focused"
|
||||
/>
|
||||
</template>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user