Fixed the hardware info tables to use the full section width
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2022-08-23 23:59:05 -04:00
parent 0656a1ff34
commit be030532ea
4 changed files with 44 additions and 40 deletions

View File

@ -19,7 +19,7 @@ loadDisks = () ->
i = 0
while i < data.length
optionElem = document.createElement('option')
diskName = data[i].name + '(' + data[i].device + ')'
diskName = data[i].name + ' (' + data[i].device + ')'
optionElem.innerText = diskName
optionElem.setAttribute('value', i)
document.getElementById('diskSelector').appendChild(optionElem)