mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Fix linting!
This commit is contained in:
parent
b5323eeba4
commit
bb7721b670
@ -1,10 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<input
|
<input type="checkbox" v-model="currentValue" :name="name" />
|
||||||
type="checkbox"
|
|
||||||
v-model="currentValue"
|
|
||||||
:name="name"
|
|
||||||
/>
|
|
||||||
{{ label }}
|
{{ label }}
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -43,4 +39,4 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@ -244,7 +244,10 @@ export default {
|
|||||||
const { slug, id } = this.$route.params
|
const { slug, id } = this.$route.params
|
||||||
return [
|
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}`,
|
path: `/post/${id}/${slug}`,
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user