summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js
diff options
context:
space:
mode:
authorStan Grishin <stangri@melmac.ca>2024-09-24 10:20:15 -0700
committerGitHub <noreply@github.com>2024-09-24 10:20:15 -0700
commit63d8b79c79ed90bbb967483addd9e5fca350932d (patch)
tree4b2e1b0e4a73c512821ffea0c49dd78c9c7e30fe /applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js
parent366e4c96696d0cf106118f4b5e6d77cf565caa8f (diff)
parentc70ec6f8c7e2fbf6c66697117914313289f0a14f (diff)
Merge pull request #7292 from stangri/master-luci-app-https-dns-proxy
luci-app-https-dns-proxy: better description/link for force_dns
Diffstat (limited to 'applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js')
-rw-r--r--applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js b/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js
index 5922a35279..fe5e9dfa4e 100644
--- a/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js
+++ b/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/view/https-dns-proxy/overview.js
@@ -113,7 +113,12 @@ return view.extend({
form.ListValue,
"force_dns",
_("Force Router DNS"),
- _("Forces Router DNS use on local devices, also known as DNS Hijacking.")
+ _(
+ "Forces Router DNS use on local devices, also known as DNS Hijacking. Only works on `lan` interface by default (%smore information%s)."
+ ).format(
+ '<a href="' + pkg.URL + "#force_dns" + '" target="_blank">',
+ "</a>"
+ )
);
o.value("0", _("Let local devices use their own DNS servers if set"));
o.value("1", _("Force Router DNS server to all local devices"));