quick bug fixes

This commit is contained in:
MathMan05 2024-09-24 20:29:58 -05:00
parent 5abe4c6748
commit 2e89ff0537

View file

@ -1298,7 +1298,7 @@ class Localuser{
if(json.message) form.error("name", json.message); if(json.message) form.error("name", json.message);
else{ else{
devPortal.returnFromSub(); devPortal.returnFromSub();
this.manageApplication(json.id); this.manageApplication(json.id,devPortal);
} }
}, },
{ {
@ -1373,8 +1373,6 @@ class Localuser{
headers: this.headers, headers: this.headers,
}); });
const json = await res.json(); const json = await res.json();
const fields: any = {};
const form=container.addSubForm(json.name,()=>{},{ const form=container.addSubForm(json.name,()=>{},{
fetchURL:this.info.api + "/applications/" + appId, fetchURL:this.info.api + "/applications/" + appId,
method:"PATCH", method:"PATCH",