Fix linting!

This commit is contained in:
elweyn 2023-06-06 14:35:57 +02:00
parent b5323eeba4
commit bb7721b670
2 changed files with 6 additions and 7 deletions

View File

@ -1,10 +1,6 @@
<template>
<div>
<input
type="checkbox"
v-model="currentValue"
:name="name"
/>
<input type="checkbox" v-model="currentValue" :name="name" />
{{ label }}
</div>
</template>
@ -43,4 +39,4 @@ export default {
},
},
}
</script>
</script>

View File

@ -244,7 +244,10 @@ export default {
const { slug, id } = this.$route.params
return [
{
name: this.post?.postType[0] === 'Event' ? this.$t('post.viewEvent.title') : this.$t('post.viewPost.title'),
name:
this.post?.postType[0] === 'Event'
? this.$t('post.viewEvent.title')
: this.$t('post.viewPost.title'),
path: `/post/${id}/${slug}`,
children: [
{