feat: improve firmware upload section

This commit is contained in:
2025-08-26 17:34:05 +02:00
parent 0e7f241c90
commit e23b40e0cb
3 changed files with 146 additions and 135 deletions

View File

@@ -715,10 +715,12 @@ function setupFirmwareView() {
targetRadios.forEach(radio => {
radio.addEventListener('change', () => {
if (radio.value === 'specific') {
specificNodeSelect.style.display = 'block';
specificNodeSelect.style.visibility = 'visible';
specificNodeSelect.style.opacity = '1';
populateNodeSelect();
} else {
specificNodeSelect.style.display = 'none';
specificNodeSelect.style.visibility = 'hidden';
specificNodeSelect.style.opacity = '0';
}
updateDeployButton();
});