From b92d2ecf053201de7a3d94c3cfeda77b29d80875 Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Mon, 5 Dec 2022 10:27:51 +0200 Subject: [PATCH] fixes #307 Github link on new home page dead --- app/imports/client/ui/layouts/Sidebar.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/imports/client/ui/layouts/Sidebar.vue b/app/imports/client/ui/layouts/Sidebar.vue index 21d34e16..1b893f37 100644 --- a/app/imports/client/ui/layouts/Sidebar.vue +++ b/app/imports/client/ui/layouts/Sidebar.vue @@ -42,6 +42,7 @@ :key="i" :to="link.to" :href="link.href" + :target="link.href ? '_blank': undefined" > {{ link.icon }} @@ -103,7 +104,7 @@ export default { { title: 'About', icon: 'mdi-sign-text', to: '/about' }, { title: 'Documentation', icon: 'mdi-book-open-variant', to: '/docs' }, { title: 'Patreon', icon: 'mdi-patreon', href: 'https://www.patreon.com/dicecloud' }, - { title: 'Github', icon: 'mdi-github', href: 'https://github.com/ThaumRystra/DiceCloud/tree/version-2' }, + { title: 'Github', icon: 'mdi-github', href: 'https://github.com/ThaumRystra/DiceCloud/' }, ]; return links.filter(link => !link.requireLogin || isLoggedIn); },