ARTEMIS-3508 enhance all fields for which an enhancement function exists
This commit is contained in:
parent
fa0174b3de
commit
f4be4d9718
|
@ -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});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue