From 8917a315960b6e5322daeb4b51001fb7cd8607f9 Mon Sep 17 00:00:00 2001 From: Marcin Haba Date: Wed, 30 Sep 2020 06:14:35 +0200 Subject: [PATCH] baculum: Fix date filter on status schedule page --- gui/baculum/protected/Web/JavaScript/misc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/baculum/protected/Web/JavaScript/misc.js b/gui/baculum/protected/Web/JavaScript/misc.js index e1a1e631d..1ab9758dc 100644 --- a/gui/baculum/protected/Web/JavaScript/misc.js +++ b/gui/baculum/protected/Web/JavaScript/misc.js @@ -308,7 +308,7 @@ function render_date(data, type, row) { function render_date_ts(data, type, row) { var t; - if (type == 'display') { + if (type == 'display' || type == 'filter') { t = Units.format_date(data) } else { t = data; -- 2.47.3