Skip to content

Commit

Permalink
ARTEMIS-3621 show 'zero' timestamp as 'N/A' (instead of 1970...)
Browse files Browse the repository at this point in the history
  • Loading branch information
Erwin Dondorp authored and clebertsuconic committed Jan 4, 2022
1 parent 055d05b commit 9b45055
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ var Artemis;
// "HH:mm:ss ago"
return hours + ":" + mins + ":" + secs + " ago";
}
// "in HH:mm:ss ago"
// "in HH:mm:ss"
return "in " + hours + ":" + mins + ":" + secs;
}
return formatTimestamp(timestamp);
Expand All @@ -491,6 +491,9 @@ var Artemis;
if (isNaN(timestamp) || typeof timestamp !== "number") {
return timestamp;
}
if (timestamp === 0) {
return "N/A";
}
var d = new Date(timestamp);
// "yyyy-MM-dd HH:mm:ss"
//add 1 to month as getmonth returns the position not the actual month
Expand Down Expand Up @@ -526,7 +529,7 @@ var Artemis;
}

function formatPersistentSize(bytes) {
if(isNaN(bytes) || typeof bytes !== "number" || bytes < 0) return "n/a";
if(isNaN(bytes) || typeof bytes !== "number" || bytes < 0) return "N/A";
if(bytes < 10240) return bytes.toLocaleString() + " Bytes";
if(bytes < 1048576) return (bytes / 1024).toFixed(2) + " KB";
if(bytes < 1073741824) return (bytes / 1048576).toFixed(2) + " MB";
Expand Down

0 comments on commit 9b45055

Please sign in to comment.