diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-27 08:30:20 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-05 14:46:50 +0200 |
commit | 680ad8225d72703dcdc98a128c7dd4f408a3018b (patch) | |
tree | a04fb1027e2c26347b47ee6468381df57c2773a2 /data | |
parent | 6e4c23688bdde161f841e1bf307ed78a113f6214 (diff) | |
download | bugzilla-triage-680ad8225d72703dcdc98a128c7dd4f408a3018b.tar.gz |
We don't set severity for RHEL bugs
Diffstat (limited to 'data')
-rw-r--r-- | data/lib/otherButtons.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/lib/otherButtons.js b/data/lib/otherButtons.js index 7bd36f3..66b5a9b 100644 --- a/data/lib/otherButtons.js +++ b/data/lib/otherButtons.js @@ -63,7 +63,7 @@ function markBugTriaged() { if (!hasXorgBugsCategory()) { alert("This won't do! First set the category!"); } - else if (getSeverity() == 'unspecified') { + else if (!isEnterprise() && (getSeverity() == 'unspecified')) { alert("This won't do! Specify some severity!"); } else { |