ui(admin): get server startup ui working

This commit is contained in:
Matthew Penner 2021-09-15 21:19:39 -06:00
parent a6ab61adba
commit 95f3eb54db
No known key found for this signature in database
GPG key ID: 030E4AB751DC756F
11 changed files with 135 additions and 73 deletions

View file

@ -31,7 +31,6 @@ export default (id: number, server: Partial<Values>, include: string[] = []): Pr
// @ts-ignore
data[key2] = server[key];
});
console.log(data);
return new Promise((resolve, reject) => {
http.patch(`/api/application/servers/${id}`, data, { params: { include: include.join(',') } })