summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-adblock-fast/htdocs
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-adblock-fast/htdocs')
-rw-r--r--applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js6
1 files changed, 3 insertions, 3 deletions
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 || " ") + "<br />";
+ errorTable[element.id].format(element.extra || " ") + "!<br />";
});
- text += _("Errors encountered, please check the %sREADME%s!").format(
+ text += _("Errors encountered, please check the %sREADME%s").format(
'<a href="' + pkg.URL + '" target="_blank">',
- "</a><br />"
+ "</a>!<br />"
);
var errorsText = E("div", {}, text);
var errorsField = E("div", { class: "cbi-value-field" }, errorsText);