@samitouri / QOSami-HFS / commits / 3d3bc7eb

admin/home: link to documentation

Massimo Melina committed Jan 7, 2024 at 11:53 UTC 3d3bc7eb8a4608e2942992bbcac72cf6fc02669d
1 file changed +2 -2
admin/src/HomePage.ts
+2 -2
@@ -70,7 +70,7 @@ export default function HomePage() {
70 ),
71 plugins.find(x => x.badApi) && entry('warning', "Some plugins may be incompatible"),
72 !account?.adminActualAccess && entry('', md("On <u>localhost</u> you don't need to login"),
73 - SOLUTION_SEP, "to access from another computer ", h(InLink, { to:'accounts' }, md("create an account with *admin* permission")) ),
73 + SOLUTION_SEP, "to access Admin-panel from another computer ", h(InLink, { to:'accounts' }, md("create an account with *admin* permission")) ),
74 proxyWarning(cfg, status) && entry('warning', proxyWarning(cfg, status),
75 SOLUTION_SEP, cfgLink("set the number of proxies"),
76 SOLUTION_SEP, "unless you are sure and you can ", h(Button, {
@@ -90,7 +90,7 @@ export default function HomePage() {
90 h('li',{}, md(`configure FRP to connect to HFS <u>not</u> with 127.0.0.1 (safe, but you won't see users' IPs)`)),
91 h('li',{}, `disable "admin access for localhost" in HFS (safe, but you won't see users' IPs)`),
92 )),
93 - entry('', h(Link, { target: 'support', href: REPO_URL + 'discussions' }, "Get support")),
93 + entry('', wikiLink('', "See the documentation"), " and ", h(Link, { target: 'support', href: REPO_URL + 'discussions' }, "get support")),
94 pluginUpdates.length > 0 && entry('success', "Updates available for plugin(s): " + pluginUpdates.map(p => p.id).join(', ')),
95 status.updatePossible === 'local' ? h(Btn, {
96 icon: UpdateIcon,