From 879050c98e1d2cc18f522a16d5b0cb2b82232dca Mon Sep 17 00:00:00 2001 From: cel Date: Tue, 24 Mar 2020 13:26:07 -0400 Subject: Try to clarify gathering times - Show user-local date time string on gathering page, alongside UTC timestamp and TZ string - Include TZ in about message - Align table headings to be more readable --- lib/render-msg.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/render-msg.js') diff --git a/lib/render-msg.js b/lib/render-msg.js index ccaa5b1..68ea4d7 100644 --- a/lib/render-msg.js +++ b/lib/render-msg.js @@ -608,9 +608,9 @@ RenderMsg.prototype.links = function (links, cb) { function dateTime(d) { var date = new Date(d.epoch) + var tz = d.tz || d.bias return date.toString() - // d.bias - // d.epoch + + (tz ? ' in ' + tz : '') } // TODO: make more DRY -- cgit v1.2.3