You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by cc...@apache.org on 2018/06/21 20:34:55 UTC

[incubator-superset] branch master updated: [timeseries table] use verbose date in tooltip by default (#5263)

This is an automated email from the ASF dual-hosted git repository.

ccwilliams pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 15c8e5b  [timeseries table] use verbose date in tooltip by default (#5263)
15c8e5b is described below

commit 15c8e5bfa92571da6dbb181fffb81d71dfd029e6
Author: Chris Williams <wi...@users.noreply.github.com>
AuthorDate: Thu Jun 21 13:34:49 2018 -0700

    [timeseries table] use verbose date in tooltip by default (#5263)
---
 superset/assets/src/modules/dates.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset/assets/src/modules/dates.js b/superset/assets/src/modules/dates.js
index f8d8684..8b8dfa9 100644
--- a/superset/assets/src/modules/dates.js
+++ b/superset/assets/src/modules/dates.js
@@ -114,7 +114,7 @@ export const formatDateVerbose = function (dttm) {
 
 export const formatDateThunk = function (format) {
   if (!format) {
-    return formatDate;
+    return formatDateVerbose;
   }
 
   const formatter = d3.time.format(format);