From 0169d4c29d863e9876445d09a61722e8846cb9ad Mon Sep 17 00:00:00 2001 From: tree Date: Thu, 1 Feb 2024 13:19:56 +0100 Subject: [PATCH] Fix source link for projects --- components/Project/ProjectNavigation.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Project/ProjectNavigation.vue b/components/Project/ProjectNavigation.vue index 4a19a3b..a343f86 100644 --- a/components/Project/ProjectNavigation.vue +++ b/components/Project/ProjectNavigation.vue @@ -4,7 +4,7 @@ import { useRoute } from 'vue-router' const route = useRoute() const githubProjectUrl = computed(() => { - return `https://github.com/web3privacy/data/blob/main/src/projects/${route.params.id}/index.yaml` + return `https://github.com/web3privacy/explorer-data/blob/main/src/projects/${route.params.id}/index.yaml` })