From 49188f40ac3da0f199aaa5777f39bc0bfa88808c Mon Sep 17 00:00:00 2001 From: Ryan Turner Date: Fri, 11 Jun 2021 14:19:38 -0500 Subject: [PATCH] fix: update link in footer with new repo name The footer link to viewing the source code sends users to the wrong repository. This repo must've been named "panel" in a past life, but now it is "dashy". This resolves the issue. --- src/components/PageStrcture/Footer.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PageStrcture/Footer.vue b/src/components/PageStrcture/Footer.vue index 44df715c..a5b0b407 100644 --- a/src/components/PageStrcture/Footer.vue +++ b/src/components/PageStrcture/Footer.vue @@ -20,7 +20,7 @@ export default { licenseUrl: { type: String, default: 'https://gist.github.com/Lissy93/143d2ee01ccc5c052a17' }, date: { type: String, default: `${new Date().getFullYear()}` }, showCopyright: { type: Boolean, default: true }, - repoUrl: { type: String, default: 'https://github.com/lissy93/panel' }, + repoUrl: { type: String, default: 'https://github.com/lissy93/dashy' }, text: String, }, };