From cb28a886d84c05346e6adc54e733ed543db30c93 Mon Sep 17 00:00:00 2001 From: Lisset Cuevas Date: Wed, 1 Apr 2020 09:11:50 -0600 Subject: [PATCH] Bug 1370492 - Assigned to you shows bugs priority in My dashboard --- extensions/MyDashboard/lib/Queries.pm | 1 + extensions/MyDashboard/web/js/query.js | 1 + 2 files changed, 2 insertions(+) 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 }, ], -- 2.47.3