diff --git a/luci-app-alist/luasrc/view/alist/alist_log.htm b/luci-app-alist/luasrc/view/alist/alist_log.htm index 737179e..5ec4a78 100644 --- a/luci-app-alist/luasrc/view/alist/alist_log.htm +++ b/luci-app-alist/luasrc/view/alist/alist_log.htm @@ -17,7 +17,9 @@ function(x, data) { if(x && x.status == 200) { var log_textarea = document.getElementById('log_textarea'); - log_textarea.innerHTML = x.responseText; + var str = x.responseText; + var logs = str.replace(//g, "🔧"); + log_textarea.innerHTML = logs; if (!scrolled) { log_textarea.scrollTop = log_textarea.scrollHeight; scrolled = true;