Rename and auto select.

This commit is contained in:
chriz
2026-01-25 22:04:59 +01:00
parent c36136047c
commit b2514bf176
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -39,6 +39,11 @@ function vlanForm() {
function setC(t, p, c){
document.getElementById(t+'port'+p).checked=c;
// When a tagged port is checked, automatically select the PVID port as well
const tportElem = document.getElementById('tport'+p);
if (tportElem && tportElem.checked) {
document.getElementById('pport'+p).checked=true;
}
}
function utClicked(t){