better english
Massimo Melina committed
Oct 9, 2024 at 11:40 UTC
fda91cce55c7f60188a836a212dfee8a8f17549e
1 file changed
+1
-1
admin/src/HomePage.ts
+1
-1
@@ -52,7 +52,7 @@ export default function HomePage() {
52
), " or ", SOLUTION_SEP, cfgLink("provide adequate files")
53
]]))
54
return h(Box, { display:'flex', gap: 2, flexDirection:'column', alignItems: 'flex-start', height: '100%' },
55
- username && entry('', "Welcome "+username),
55
+ username && entry('', "Welcome, "+username),
56
dontBotherWithKeys(status.alerts?.map(x => entry('warning', md(x, { html: false })))),
57
errors.length ? dontBotherWithKeys(errors.map(msg => entry('error', dontBotherWithKeys(msg))))
58
: entry('success', "Server is working"),