fix: typo

Massimo Melina committed Feb 22, 2023 at 22:40 UTC e07fc1ad5daabec0855096b5056b7716e36b1f56
1 file changed +1 -1
admin/src/HomePage.ts
+1 -1
@@ -44,7 +44,7 @@ export default function HomePage() {
44 !vfs ? h(LinearProgress)
45 : !vfs.root?.children?.length && !vfs.root?.source ? entry('warning', "You have no files shared", SOLUTION_SEP, fsLink("add some"))
46 : entry('', md("This is Admin-panel, where you manage your server. Access your files on "),
47 - h(Link, { target:'frontend', href: '/' }, "Frontend", h(Launch, { sx: { verticalAlign: 'sub', ml: '.2em' } }))),
47 + h(Link, { target:'frontend', href: '/' }, "Front-end", h(Launch, { sx: { verticalAlign: 'sub', ml: '.2em' } }))),
48 !href && entry('warning', "Frontend unreachable: ",
49 ['http','https'].map(k => k + " " + (errorMap[k] ? "is in error" : "is off")).join(', '),
50 !errors.length && [ SOLUTION_SEP, cfgLink("switch http or https on") ]