diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl | 9 | ||||
-rw-r--r-- | extensions/BugModal/web/bug_modal.js | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl index d9e970fe0..c7bdefbdc 100644 --- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl @@ -616,6 +616,15 @@ view_only = 1 %] + [%# triage owner %] + [% INCLUDE bug_modal/field.html.tmpl + field = bug_fields.triage_owner + field_type = constants.FIELD_TYPE_USER + value = bug.component_obj.triage_owner + view_only = 1 + %] + + [%# needinfo %] [% WRAPPER bug_modal/field.html.tmpl container = 1 diff --git a/extensions/BugModal/web/bug_modal.js b/extensions/BugModal/web/bug_modal.js index 12d64c580..1282ff838 100644 --- a/extensions/BugModal/web/bug_modal.js +++ b/extensions/BugModal/web/bug_modal.js @@ -865,7 +865,7 @@ $(function() { $('#top-save-btn').show(); $('#resolve-as').hide(); $('#bottom-status').show(); - $('#bottom-dup_id').focus(); + $('#bottom-dup_id').focus(); }); $('.status-btn') .click(function(event) { |