mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Fixed #8112
This commit is contained in:
parent
158999e994
commit
db28039e4e
@ -138,8 +138,11 @@ $(function() {
|
||||
if (select.options.length < max) {
|
||||
for (var i=select.options.length; i<=max; i++)
|
||||
select.options.add(new Option(i, i), 0);
|
||||
// Make sure index 0 is selected otherwise it will stay in "32" for V6
|
||||
select.options.selectedIndex = "0";
|
||||
|
||||
if (isV6) {
|
||||
// Make sure index 0 is selected otherwise it will stay in "32" for V6
|
||||
select.options.selectedIndex = "0";
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Loading…
Reference in New Issue
Block a user