This commit is contained in:
Justin Bertram 2021-10-04 14:51:51 -05:00
commit 0b69622554
1 changed files with 4 additions and 0 deletions

View File

@ -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});
}