diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-07-24 22:45:30 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-07-24 22:45:30 +0200 |
commit | 40fc1852a1d64e2889f0b532efa38573f41fc0e2 (patch) | |
tree | 4a7c0ceec777c3a2812333f76d33761b1fca76c6 /extensions/MyDashboard | |
parent | fb746c9e8307552f805a29a57a2928a741c837c4 (diff) | |
download | bugzilla-40fc1852a1d64e2889f0b532efa38573f41fc0e2.tar.gz bugzilla-40fc1852a1d64e2889f0b532efa38573f41fc0e2.tar.xz |
Bug 896197 - On MyDashboard, assigned to you section arrows are present on the back of the bugs found text.
Diffstat (limited to 'extensions/MyDashboard')
-rw-r--r-- | extensions/MyDashboard/web/js/query.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/extensions/MyDashboard/web/js/query.js b/extensions/MyDashboard/web/js/query.js index 7d25cc33e..98cb2b407 100644 --- a/extensions/MyDashboard/web/js/query.js +++ b/extensions/MyDashboard/web/js/query.js @@ -116,13 +116,13 @@ YUI({ dataTable = new Y.DataTable({ columns: [ { key: Y.Plugin.DataTableRowExpansion.column_key, label: ' ', sortable: false }, - { key: "bug_id", label: "Bug", allowHTML: true, + { key: "bug_id", label: "Bug", allowHTML: true, sortable: true, formatter: '<a href="show_bug.cgi?id={value}" target="_blank">{value}</a>' }, - { key: "changeddate", label: "Updated", formatter: updatedFormatter, allowHTML: true }, - { key: "bug_status", label: "Status" }, - { key: "short_desc", label: "Summary" }, + { key: "changeddate", label: "Updated", formatter: updatedFormatter, + allowHTML: true, sortable: true }, + { key: "bug_status", label: "Status", sortable: true }, + { key: "short_desc", label: "Summary", sortable: true }, ], - sortable: true }); var last_changes_source = Y.one('#last-changes-template').getHTML(), |