fix pci device pcie form get
This commit is contained in:
parent
2eb874580b
commit
426e27812f
@ -42,6 +42,10 @@ function buildResourceTable(resources, tableid) {
|
|||||||
let tbody = table.querySelector("tbody");
|
let tbody = table.querySelector("tbody");
|
||||||
Object.keys(resources.resources).forEach((element) => {
|
Object.keys(resources.resources).forEach((element) => {
|
||||||
if (resources.resources[element].display) {
|
if (resources.resources[element].display) {
|
||||||
|
if (resources.resources[element].type === "list") {
|
||||||
|
|
||||||
|
}
|
||||||
|
else {
|
||||||
let row = tbody.insertRow();
|
let row = tbody.insertRow();
|
||||||
let key = row.insertCell();
|
let key = row.insertCell();
|
||||||
key.innerText = `${element}`;
|
key.innerText = `${element}`;
|
||||||
@ -52,6 +56,7 @@ function buildResourceTable(resources, tableid) {
|
|||||||
let total = row.insertCell();
|
let total = row.insertCell();
|
||||||
total.innerText = `${parseNumber(resources.max[element], resources.resources[element])}`;
|
total.innerText = `${parseNumber(resources.max[element], resources.resources[element])}`;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -714,7 +714,7 @@ async function handleDeviceConfig() {
|
|||||||
vmid: vmid,
|
vmid: vmid,
|
||||||
hostpci: deviceID,
|
hostpci: deviceID,
|
||||||
device: form.get("device"),
|
device: form.get("device"),
|
||||||
pcie: form.get("pcie")
|
pcie: form.get("pcie") ? 1 : 0
|
||||||
}
|
}
|
||||||
let result = await requestAPI("/instance/pci/modify", "POST", body);
|
let result = await requestAPI("/instance/pci/modify", "POST", body);
|
||||||
if (result.status === 200) {
|
if (result.status === 200) {
|
||||||
|
Loading…
Reference in New Issue
Block a user