Merge branch 'master' of github.com:Ocelot-Social-Community/Ocelot-Social into 5059-epic-groups

This commit is contained in:
Wolfgang Huß 2022-10-19 19:01:01 +02:00
commit 25c1c7ff90
2 changed files with 6 additions and 7 deletions

View File

@ -1,13 +1,12 @@
export default { export default {
MENU: [ MENU: [
// { // {
// name: 'Beiträge', // nameIdent: 'ocelotRebranding.newsFeed',
// path: '/#', // path: '/',
// }, // },
// { // {
// name: 'Über Yunite', // nameIdent: 'ocelotRebranding.about',
// path: '/#', // url: 'https://ocelot.org',
// url: 'https://yunite.org',
// }, // },
], ],
} }

View File

@ -19,12 +19,12 @@
> >
<a v-if="item.url" :href="item.url" target="_blank"> <a v-if="item.url" :href="item.url" target="_blank">
<ds-text size="large" bold> <ds-text size="large" bold>
{{ item.name }} {{ $t(item.nameIdent) }}
</ds-text> </ds-text>
</a> </a>
<nuxt-link v-else :to="item.path"> <nuxt-link v-else :to="item.path">
<ds-text size="large" bold> <ds-text size="large" bold>
{{ item.name }} {{ $t(item.nameIdent) }}
</ds-text> </ds-text>
</nuxt-link> </nuxt-link>
</ds-flex-item> </ds-flex-item>