fix pci device pcie form get
This commit is contained in:
parent
59e75659bd
commit
1359ebcc87
@ -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])}`;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user