diff options
-rw-r--r-- | data/rhlib/rhbzpage.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/data/rhlib/rhbzpage.js b/data/rhlib/rhbzpage.js index 48a5758..881bba9 100644 --- a/data/rhlib/rhbzpage.js +++ b/data/rhlib/rhbzpage.js @@ -502,6 +502,16 @@ function RHBZinit(attachments) { setBranding(XorgLogAttList); + // Don't allow to submit a page which would change the bug to 0xFFFF component + document.forms.namedItem("changeform").addEventListener( + "submit", function(aEvt) { + if (getComponent() == "0xFFFF") { + alert("Don't change the component to 0xFFFF"); + aEvt.stopPropagation(); + aEvt.preventDefault(); + } + }, false); + // Uncheck "set default assignee" when the assignee is changed by other means document.getElementById("assigned_to").addEventListener("change", function() { |