hide device input if device input is not required
Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
parent
ca59f11bdb
commit
f3b9a5d81e
@ -113,19 +113,16 @@ function addDiskLine (fieldset, busPrefix, busName, device, diskDataParsed, stor
|
||||
busLabel.innerHTML = busName;
|
||||
field.append(busLabel);
|
||||
|
||||
if (device) {
|
||||
let deviceInput = document.createElement("input");
|
||||
deviceInput.type = "number";
|
||||
deviceInput.min = 0;
|
||||
deviceInput.max = diskConfig[type][busPrefix].limit;
|
||||
deviceInput.value = device;
|
||||
field.append(deviceInput);
|
||||
}
|
||||
else {
|
||||
let deviceInput = document.createElement("div");
|
||||
deviceInput.classList.add("hidden");
|
||||
field.append(deviceInput);
|
||||
let deviceInput = document.createElement("input");
|
||||
deviceInput.type = "number";
|
||||
deviceInput.min = 0;
|
||||
deviceInput.max = diskConfig[type][busPrefix].limit;
|
||||
deviceInput.value = device;
|
||||
if (!device) {
|
||||
deviceInput.disabled = true;
|
||||
deviceInput.classList.add("hidden");
|
||||
}
|
||||
field.append(deviceInput);
|
||||
|
||||
let storage = diskDataParsed.storage;
|
||||
let storageSelect = document.createElement("select");
|
||||
|
Loading…
Reference in New Issue
Block a user