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 {
MENU: [
// {
// name: 'Beiträge',
// path: '/#',
// nameIdent: 'ocelotRebranding.newsFeed',
// path: '/',
// },
// {
// name: 'Über Yunite',
// path: '/#',
// url: 'https://yunite.org',
// nameIdent: 'ocelotRebranding.about',
// url: 'https://ocelot.org',
// },
],
}

View File

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