Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-11-11 16:24:24 -05:00
parent 2b12b428dd
commit 233abb8856
+1 -1
View File
@@ -18,7 +18,7 @@ function dateToStr(ts) {
}
function htmlEscape(text) {
return text.replaceAll("&", "&amp;").replaceAll("<", "&lt;").replaceAll(">", "&gt;")
return text.replaceAll('&', '&amp;').replaceAll('<', '&lt;').replaceAll('>', '&gt;');
}
async function logMonitor() {