This commit is contained in:
Mateusz Gruszczyński
2026-05-31 13:12:00 +02:00
parent 6b8321e6e6
commit a49133de8d
17 changed files with 46 additions and 1 deletions
+1
View File
@@ -0,0 +1 @@
export const portCheckActionsSource = " async function loadPortCheck(force=false){ try{ const res=force?await post('/api/port-check',{}):await (await fetch('/api/port-check')).json(); if(!res.ok) throw new Error(res.error||'Port check failed'); renderPortCheck(res.port_check||{}); }catch(e){ renderPortCheck({status:'error',enabled:portCheckEnabled,error:e.message}); } }";