summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Field.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-11-14 09:09:40 +0100
committerByron Jones <bjones@mozilla.com>2013-11-14 09:09:40 +0100
commit57847be7c4335c5150daa79e913a6ffbb8e37142 (patch)
tree6c761acc2da6ed972e169860e58058cf16f58471 /Bugzilla/Field.pm
parent3a33309b066d919f8a6e2d312b538e556894b079 (diff)
downloadbugzilla-57847be7c4335c5150daa79e913a6ffbb8e37142.tar.gz
bugzilla-57847be7c4335c5150daa79e913a6ffbb8e37142.tar.xz
Product and Component entries in emails sent out for new bugs are positioned too far away
https://bugzilla.mozilla.org/show_bug.cgi?id=938507
Diffstat (limited to 'Bugzilla/Field.pm')
-rw-r--r--Bugzilla/Field.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/Field.pm b/Bugzilla/Field.pm
index 6b5b6ba94..f1118da6a 100644
--- a/Bugzilla/Field.pm
+++ b/Bugzilla/Field.pm
@@ -179,6 +179,9 @@ use constant DEFAULT_FIELDS => (
{name => 'product', desc => 'Product', in_new_bugmail => 1,
is_mandatory => 1,
type => FIELD_TYPE_SINGLE_SELECT, buglist => 1},
+ {name => 'component', desc => 'Component', in_new_bugmail => 1,
+ is_mandatory => 1,
+ type => FIELD_TYPE_SINGLE_SELECT, buglist => 1},
{name => 'version', desc => 'Version', in_new_bugmail => 1,
is_mandatory => 1, buglist => 1},
{name => 'rep_platform', desc => 'Platform', in_new_bugmail => 1,
@@ -199,9 +202,6 @@ use constant DEFAULT_FIELDS => (
type => FIELD_TYPE_SINGLE_SELECT, buglist => 1},
{name => 'priority', desc => 'Priority', in_new_bugmail => 1,
type => FIELD_TYPE_SINGLE_SELECT, buglist => 1},
- {name => 'component', desc => 'Component', in_new_bugmail => 1,
- is_mandatory => 1,
- type => FIELD_TYPE_SINGLE_SELECT, buglist => 1},
{name => 'assigned_to', desc => 'AssignedTo', in_new_bugmail => 1,
buglist => 1},
{name => 'reporter', desc => 'ReportedBy', in_new_bugmail => 1,