From 233cacd9eb6919569f40d346901099956a3111d6 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 16 Sep 2020 10:27:13 +0200 Subject: [PATCH] luci-app-nextdns: fix invalid XHTML Fixes: #4423 Signed-off-by: Jo-Philipp Wich --- .../htdocs/luci-static/resources/view/nextdns/overview.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/applications/luci-app-nextdns/htdocs/luci-static/resources/view/nextdns/overview.js b/applications/luci-app-nextdns/htdocs/luci-static/resources/view/nextdns/overview.js index 4899fda97b..e063ae3a4c 100644 --- a/applications/luci-app-nextdns/htdocs/luci-static/resources/view/nextdns/overview.js +++ b/applications/luci-app-nextdns/htdocs/luci-static/resources/view/nextdns/overview.js @@ -8,7 +8,7 @@ return view.extend({ m = new form.Map('nextdns', _('NextDNS'), _('NextDNS Configuration.') - + '
' + + '
' + _('For further information, go to \ nextdns.io.')); @@ -22,7 +22,7 @@ return view.extend({ s.option(form.Value, 'config', _('Configuration ID'), _('The ID of your NextDNS configuration.') - + '
' + + '
' + _('Go to nextdns.io to create a configuration.')); o = s.option(form.Flag, 'report_client_info', _('Report Client Info'), @@ -32,7 +32,7 @@ return view.extend({ o = s.option(form.Flag, 'hardened_privacy', _('Hardened Privacy'), _('When enabled, use DNS servers located in jurisdictions with strong privacy laws.') - + '
' + + '
' + _('Available locations are: Switzerland, Iceland, Finland, Panama and Hong Kong.')); o.rmempty = false; -- 2.30.2