diff options
Diffstat (limited to 'applications/luci-app-simple-adblock/htdocs/luci-static/resources/view/simple-adblock/overview.js')
-rw-r--r-- | applications/luci-app-simple-adblock/htdocs/luci-static/resources/view/simple-adblock/overview.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-app-simple-adblock/htdocs/luci-static/resources/view/simple-adblock/overview.js b/applications/luci-app-simple-adblock/htdocs/luci-static/resources/view/simple-adblock/overview.js index 8dd94cc1cf..c0066dd100 100644 --- a/applications/luci-app-simple-adblock/htdocs/luci-static/resources/view/simple-adblock/overview.js +++ b/applications/luci-app-simple-adblock/htdocs/luci-static/resources/view/simple-adblock/overview.js @@ -21,7 +21,7 @@ return view.extend({ render: function () { return Promise.all([ - L.resolveDefault(adb.getPlatformSupport(), {}), + L.resolveDefault(adb.getPlatformSupport(pkg.Name), {}), ]).then(function (data) { var replyPlatform = data[0]; var status, m, s, o; @@ -71,10 +71,10 @@ return view.extend({ } else { if (!(replyPlatform[pkg.Name].dnsmasq_ipset_support)) { - text += _("Please note that %s is not supported on this system.").format("<i>dnsmasq.ipset</i>") + "<br />"; + text += "<br />" + _("Please note that %s is not supported on this system.").format("<i>dnsmasq.ipset</i>"); } if (!(replyPlatform[pkg.Name].dnsmasq_nftset_support)) { - text += _("Please note that %s is not supported on this system.").format("<i>dnsmasq.nftset</i>") + "<br />"; + text += "<br />" + _("Please note that %s is not supported on this system.").format("<i>dnsmasq.nftset</i>"); } } if (!(replyPlatform[pkg.Name].unbound_installed)) { |