From 26833781a7ed66070c56237c16f508ad0d665a30 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Mon, 26 May 2025 21:25:15 +0200 Subject: [PATCH] UI - Remove incorrect error text --- changedetectionio/static/js/realtime.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/static/js/realtime.js b/changedetectionio/static/js/realtime.js index 2641fa3b..1ff1d19e 100644 --- a/changedetectionio/static/js/realtime.js +++ b/changedetectionio/static/js/realtime.js @@ -102,7 +102,7 @@ $(document).ready(function () { // Tabs at bottom of list $('#post-list-mark-views').toggleClass("has-unviewed", general_stats.has_unviewed); $('#post-list-with-errors').toggleClass("has-error", general_stats.count_errors !== 0) - $('#post-list-with-errors a').text(`xxxxWith errors (${ general_stats.count_errors })`); + $('#post-list-with-errors a').text(`With errors (${ general_stats.count_errors })`); $('body').toggleClass('checking-now', watch.checking_now && window.location.href.includes(watch.uuid)); });