fix: space missing between footer parts
Lint / Oxlint (push) Successful in 57s
Lint / TypeScript (push) Successful in 1m1s
Lint / ESLint (push) Successful in 1m4s
Deploy / Build (push) Successful in 1m39s
Deploy / Deploy to Stapler (push) Successful in 4m16s

This commit is contained in:
2026-07-20 15:24:54 +02:00
parent 1079ae9df1
commit 49978afd4c
+2 -2
View File
@@ -6,7 +6,7 @@ import { stripHTML } from '@lib/strings'
<template>
<footer>
{{ stripHTML(TITLE) }} &copy; {{ new Date().getFullYear() }}, <span v-html="COPYRIGHT"></span>
<span v-if="FOOTER">| <span v-html="FOOTER"></span></span>
| Made with <a :href="REPOSITORY">{{ NAME }} {{ VERSION }}</a>
<span v-if="FOOTER">&nbsp;| <span v-html="FOOTER"></span></span>
&nbsp;| Made with <a :href="REPOSITORY">{{ NAME }} {{ VERSION }}</a>
</footer>
</template>