diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-27 08:30:20 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-04-27 08:30:20 +0200 |
commit | bc4c8cfcc7bb9814a0a4ce73d402e37fa7c0eedd (patch) | |
tree | 6dc441f6c008edf6b24a0c900e1c1fbe445b2132 | |
parent | ba7f7b262c35cc2b88a14cc04040ddfe7bcfdc1a (diff) | |
download | bugzilla-triage-bc4c8cfcc7bb9814a0a4ce73d402e37fa7c0eedd.tar.gz |
We don't set severity for RHEL bugs
-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 { |