JessicaDuan commented on issue #3271: date type field display error URL: https://github.com/apache/incubator-superset/issues/3271#issuecomment-327991577 Hi, I've compared the differences between 0.19.1 and 0.15.2, and found that: class TableViz => def json_dumps() In 0.15.2, it was: return json.dumps(obj, default=utils.json_iso_dttm_ser) Current Result: 1504860088000 | 1504860138000 | 1504860159000 | 0 | 1504828800000 | 2017-09-08 08:00:00 | 1003 After: def json_dump(): return json.dumps(obj, default=utils.json_iso_dttm_ser) 2017-09-07T17:59:33 | 2017-09-07T18:19:47 | 2017-09-07T18:20:08 | 0 | 2017-09-07 | 2017-09-07T08:00:00+08:00 | 1003 ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
With regards, Apache Git Services
