You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2018/04/11 22:15:39 UTC

[incubator-superset] branch master updated: [bugfix] dedup groupby columns in Deck visualizations (#4801)

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

maximebeauchemin 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 07a5f47  [bugfix] dedup groupby columns in Deck visualizations (#4801)
07a5f47 is described below

commit 07a5f47c75abf04d5fe4f9b2d1dcd02352d66261
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Wed Apr 11 15:15:36 2018 -0700

    [bugfix] dedup groupby columns in Deck visualizations (#4801)
    
    When specifying the same column twice as a `Extra Data for JS` and
    `Categorical Color`, an error is issued. This addresses this issue.
---
 superset/viz.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset/viz.py b/superset/viz.py
index f27406b..dee7e56 100644
--- a/superset/viz.py
+++ b/superset/viz.py
@@ -2036,6 +2036,7 @@ class BaseDeckGLViz(BaseViz):
         if fd.get('js_columns'):
             gb += fd.get('js_columns')
         metrics = self.get_metrics()
+        gb = list(set(gb))
         if metrics:
             d['groupby'] = gb
             d['metrics'] = self.get_metrics()

-- 
To stop receiving notification emails like this one, please contact
maximebeauchemin@apache.org.