implemented adding new pages

This commit is contained in:
2025-09-12 13:20:34 +02:00
parent 7ddd32bb72
commit 7e52e02684
13 changed files with 155 additions and 21 deletions

View File

@@ -39,10 +39,7 @@
});
if (resp.ok){
const patched = await resp.json();
for (let key of Object.keys(patched)){
console.log('patching '+key+'…');
company[key] = patched[key];
}
for (let key of Object.keys(patched)) company[key] = patched[key];
return true;
}
error = await resp.text();