Update wiring diagram maker: formboard router + frontend

Backend formboard router and frontend (canvas, formboard, connector library,
app/api, index/css) updates. Ignore *.log.
This commit is contained in:
2026-07-14 07:09:10 -04:00
parent 906a0a1075
commit f3564cbbb0
9 changed files with 591 additions and 40 deletions
+1
View File
@@ -6,6 +6,7 @@ async function apiFetch(path, options = {}) {
const text = await res.text();
throw new Error(`API ${res.status}: ${text}`);
}
if (res.status === 204) return null;
return res.json();
}