fix pci device pcie form get

This commit is contained in:
Arthur Lu 2023-06-23 03:34:44 +00:00
parent 59e75659bd
commit 1359ebcc87
2 changed files with 15 additions and 10 deletions

View File

@ -42,6 +42,10 @@ function buildResourceTable(resources, tableid) {
let tbody = table.querySelector("tbody");
Object.keys(resources.resources).forEach((element) => {
if (resources.resources[element].display) {
if (resources.resources[element].type === "list") {
}
else {
let row = tbody.insertRow();
let key = row.insertCell();
key.innerText = `${element}`;
@ -52,6 +56,7 @@ function buildResourceTable(resources, tableid) {
let total = row.insertCell();
total.innerText = `${parseNumber(resources.max[element], resources.resources[element])}`;
}
}
});
}
}

View File

@ -714,7 +714,7 @@ async function handleDeviceConfig() {
vmid: vmid,
hostpci: deviceID,
device: form.get("device"),
pcie: form.get("pcie")
pcie: form.get("pcie") ? 1 : 0
}
let result = await requestAPI("/instance/pci/modify", "POST", body);
if (result.status === 200) {