diff --git a/mozilla/webtools/litmus/js/SelectBoxes.js b/mozilla/webtools/litmus/js/SelectBoxes.js index 45370c02214..3d569a97ee2 100755 --- a/mozilla/webtools/litmus/js/SelectBoxes.js +++ b/mozilla/webtools/litmus/js/SelectBoxes.js @@ -37,7 +37,7 @@ function load_testgroups(selects) { addNullEntry(groupbox); // find the currently selected product that goes with this select var productbox = document.getElementById("product"+groupbox.name.substr(9)); - if (productbox.selectedIndex >= 0) + if (productbox.selectedIndex >= 0) { var productid = productbox.options[productbox.selectedIndex].value; var product = getProductById(productid); if (!product) {