fix initial setup upload

This commit is contained in:
wh1te909
2020-09-14 07:33:51 +00:00
parent b24fddbb09
commit 51ee76b131

View File

@@ -82,6 +82,7 @@ export default {
meshagent: null,
allTimezones: [],
timezone: null,
arch: "64",
};
},
methods: {
@@ -96,6 +97,7 @@ export default {
.post("/clients/clients/", data)
.then(r => {
let formData = new FormData();
formData.append("arch", this.arch);
formData.append("meshagent", this.meshagent);
axios
.put("/core/uploadmesh/", formData)