From 216e267c073f15b13a306de0d031fac943a16e23 Mon Sep 17 00:00:00 2001 From: Andy Taylor Date: Mon, 7 Dec 2020 15:46:43 +0000 Subject: [PATCH] ARTEMIS-3022 - Add original queue column on browse tab when looking at dlq or expiry https://issues.apache.org/jira/browse/ARTEMIS-3022 --- .../src/main/webapp/plugin/js/components/browse.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js index 8a1fef0611..27e3ed4e34 100644 --- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js +++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/browse.js @@ -268,6 +268,17 @@ var Artemis; ]; + if (ctrl.dlq) { + origQueue = { + itemField: 'StringProperties', + header: 'Original Queue', + templateFn: function(value) { + return value._AMQ_ORIG_QUEUE; + } + }; + ctrl.tableColumns.push(origQueue); + } + var resendConfig = { name: 'Resend', title: 'Resend message',