From: Lisset Cuevas Date: Wed, 1 Apr 2020 15:11:50 +0000 (-0600) Subject: Bug 1370492 - Assigned to you shows bugs priority in My dashboard X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cb28a886d84c05346e6adc54e733ed543db30c93;p=thirdparty%2Fbugzilla.git Bug 1370492 - Assigned to you shows bugs priority in My dashboard --- diff --git a/extensions/MyDashboard/lib/Queries.pm b/extensions/MyDashboard/lib/Queries.pm index f7e19c842..6d8ab655c 100644 --- a/extensions/MyDashboard/lib/Queries.pm +++ b/extensions/MyDashboard/lib/Queries.pm @@ -42,6 +42,7 @@ use constant SELECT_COLUMNS => qw( bug_id bug_type bug_status + priority short_desc changeddate ); diff --git a/extensions/MyDashboard/web/js/query.js b/extensions/MyDashboard/web/js/query.js index 95faa816d..8cde495e1 100644 --- a/extensions/MyDashboard/web/js/query.js +++ b/extensions/MyDashboard/web/js/query.js @@ -106,6 +106,7 @@ $(function() { { key: "bug_id", label: "Bug", sortable: true, allowHTML: true, formatter: link_formatter }, { key: "changeddate", label: "Updated", formatter: updatedFormatter, allowHTML: true, sortable: true }, + { key: "priority", label: "Pri", sortable: true, allowHTML: true}, { key: "bug_status", label: "Status", sortable: true }, { key: "short_desc", label: "Summary", sortable: true, allowHTML: true, formatter: link_formatter }, ],