From f4be4d97187d01b525fa6ca801b1bae841ea4c80 Mon Sep 17 00:00:00 2001 From: Erwin Dondorp Date: Thu, 30 Sep 2021 13:26:35 +0200 Subject: [PATCH] ARTEMIS-3508 enhance all fields for which an enhancement function exists --- .../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 404659ce87..13102370cf 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}); }