You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by gr...@apache.org on 2017/11/07 07:29:04 UTC

[incubator-superset] branch master updated: Removing iso from data (#3788)

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

graceguo 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 b10aca2  Removing iso from data (#3788)
b10aca2 is described below

commit b10aca2de11ef3c138fe126cbc9d80b1b89cdad5
Author: michellethomas <mi...@gmail.com>
AuthorDate: Mon Nov 6 23:29:02 2017 -0800

    Removing iso from data (#3788)
---
 superset/assets/visualizations/time_table.jsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset/assets/visualizations/time_table.jsx b/superset/assets/visualizations/time_table.jsx
index 11d7be1..5533108 100644
--- a/superset/assets/visualizations/time_table.jsx
+++ b/superset/assets/visualizations/time_table.jsx
@@ -38,7 +38,7 @@ function viz(slice, payload) {
   slice.container.css('height', slice.height());
   const records = payload.data.records;
   const fd = payload.form_data;
-  const data = Object.keys(records).sort().map(iso => ({ ...records[iso], iso }));
+  const data = Object.keys(records).sort().map(iso => ({ ...records[iso] }));
   const reversedData = [...data].reverse();
   const metricMap = {};
   slice.datasource.metrics.forEach((m) => {

-- 
To stop receiving notification emails like this one, please contact
['"commits@superset.apache.org" <co...@superset.apache.org>'].