You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2021/10/04 19:52:01 UTC

[activemq-artemis] branch main updated: ARTEMIS-3508 enhance all fields for which an enhancement function exists

This is an automated email from the ASF dual-hosted git repository.

jbertram pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new f4be4d9  ARTEMIS-3508 enhance all fields for which an enhancement function exists
     new 0b69622  This closes #3779
f4be4d9 is described below

commit f4be4d97187d01b525fa6ca801b1bae841ea4c80
Author: Erwin Dondorp <er...@cgi.com>
AuthorDate: Thu Sep 30 13:26:35 2021 +0200

    ARTEMIS-3508 enhance all fields for which an enhancement function exists
---
 .../artemis-plugin/src/main/webapp/plugin/js/components/browse.js     | 4 ++++
 1 file changed, 4 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 404659c..1310237 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
@@ -794,8 +794,12 @@ var Artemis;
                 if (!_.some(ignoreColumns, function (k) { return k === key; }) && !_.some(flattenColumns, function (k) { return k === key; })) {
                     if(key === "expiration") {
                         value += " (" + formatExpires(value) + ")";
+                    } else if(key === "persistentSize") {
+                        value += " (" + formatPersistentSize(value) + ")";
                     } else if(key === "timestamp") {
                         value += " (" + formatTimestamp(value) + ")";
+                    } else if(key === "type") {
+                        value += " (" + formatType(value) + ")";
                     }
                     headers.push({key: key, value: value});
                 }