Compare commits

..

1 Commits

Author SHA1 Message Date
djalim 77e0b966a5 style: fix formatting of ImportMaquette error handling block
Check Deno code / Check Deno code (push) Successful in 7s
Tests / Unit tests (push) Successful in 13s
Tests / Integration tests (push) Failing after 13m46s
Check Deno code / Check Deno code (pull_request) Successful in 14s
Tests / Unit tests (pull_request) Successful in 13s
Tests / Integration tests (pull_request) Successful in 3m54s
2026-05-01 14:35:58 +02:00
@@ -230,13 +230,14 @@ export default function ImportMaquette() {
details.push({ details.push({
type: "change", type: "change",
message: `ECUE ${mod.code} "${mod.name}" cree`, message: `ECUE ${mod.code} "${mod.name}" cree`,
}); });
} else if (modRes.status !== 409) { } else if (modRes.status !== 409) {
errCount++; errCount++;
details.push({ details.push({
type: "error", type: "error",
message: `ECUE "${mod.code}" : creation echouee`, message: `ECUE "${mod.code}" : creation echouee`,
}); continue; });
continue;
} }
const linkRes = await fetch("/admin/api/ue-modules", { const linkRes = await fetch("/admin/api/ue-modules", {