diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-03-15 00:13:40 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-03-15 00:13:40 +0000 |
| commit | c9aefa81ca1950121d2357fc66afe15eb400f537 (patch) | |
| tree | fd6196b55626cea8101cd5a4a00cb2a00d8a495b /components/footer/SiteFooter.vue | |
| parent | 1dd5d0fa8bb2ae794b263d1629a662166a9b9d08 (diff) | |
Fix eslint errors
Diffstat (limited to 'components/footer/SiteFooter.vue')
| -rw-r--r-- | components/footer/SiteFooter.vue | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/components/footer/SiteFooter.vue b/components/footer/SiteFooter.vue index 2f31e4f..632131f 100644 --- a/components/footer/SiteFooter.vue +++ b/components/footer/SiteFooter.vue @@ -5,19 +5,17 @@ const runtimeConfig = useRuntimeConfig(); <template> <footer id="footer"> - <p id="copyright-license"> - Released under the GPL-3.0 License. - </p> + <p id="copyright-license">Released under the GPL-3.0 License.</p> <p id="git-commit-hash"> <font-awesome-icon :icon="['fas', 'code-branch']" /> <NuxtLink to="https://github.com/LMBishop/quests-web-editor/">quests-web-editor</NuxtLink> <span>@</span> - <NuxtLink :to="`https://github.com/LMBishop/quests-web-editor/commit/${runtimeConfig.public.gitCommitHash}`"> + <NuxtLink + :to="`https://github.com/LMBishop/quests-web-editor/commit/${runtimeConfig.public.gitCommitHash}`" + > {{ runtimeConfig.public.gitCommitHashShort }} </NuxtLink> - <span> - ({{ runtimeConfig.public.gitBranch }}) - </span> + <span> ({{ runtimeConfig.public.gitBranch }}) </span> </p> </footer> </template> @@ -49,4 +47,4 @@ const runtimeConfig = useRuntimeConfig(); text-decoration: none; } } -</style>
\ No newline at end of file +</style> |
