From d15a1fb6939684583b327f7388a1473c7d49841d Mon Sep 17 00:00:00 2001 From: Stan Grishin Date: Thu, 5 Oct 2023 14:55:29 +0000 Subject: luci-app-adblock-fast: bugfix: working re-download * bugfix: add missing dl command to RPCD script * improve output of error messages/link to README Signed-off-by: Stan Grishin --- .../htdocs/luci-static/resources/adblock-fast/status.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'applications/luci-app-adblock-fast/htdocs') diff --git a/applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js b/applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js index ae41968944..89dcb8846e 100644 --- a/applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js +++ b/applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js @@ -288,11 +288,11 @@ var status = baseclass.extend({ var text = ""; reply.status.errors.forEach((element) => { text += - errorTable[element.id].format(element.extra || " ") + "
"; + errorTable[element.id].format(element.extra || " ") + "!
"; }); - text += _("Errors encountered, please check the %sREADME%s!").format( + text += _("Errors encountered, please check the %sREADME%s").format( '', - "
" + "!
" ); var errorsText = E("div", {}, text); var errorsField = E("div", { class: "cbi-value-field" }, errorsText); -- cgit v1.2.3