From 43883be99cf9eac242b7f14f82c2407d8c9ff647 Mon Sep 17 00:00:00 2001 From: CN_SZTL Date: Sun, 8 Mar 2020 16:11:56 +0800 Subject: [PATCH] luci-app-syncthing: fix typo --- .../luasrc/view/syncthing/syncthing_status.htm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/zxlhhyccc/luci-app-syncthing/luasrc/view/syncthing/syncthing_status.htm b/package/zxlhhyccc/luci-app-syncthing/luasrc/view/syncthing/syncthing_status.htm index 32488b5f7f..bf52579b51 100644 --- a/package/zxlhhyccc/luci-app-syncthing/luasrc/view/syncthing/syncthing_status.htm +++ b/package/zxlhhyccc/luci-app-syncthing/luasrc/view/syncthing/syncthing_status.htm @@ -4,10 +4,10 @@ XHR.poll(1, '<%=url([[admin]], [[nas]], [[syncthing]], [[status]])%>', null, var tb = document.getElementById('syncthing_status'); if (data && tb) { if (data.running) { - var links = '<%:RUNNING%>'; + var links = 'Syncthing <%:RUNNING%>'; tb.innerHTML = links; } else { - tb.innerHTML = '<%:NOT RUNNING%>'; + tb.innerHTML = 'Syncthing <%:NOT RUNNING%>'; } } }