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/03/16 00:52:32 UTC

[incubator-superset] branch master updated: Fix function name (#4620)

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 da842f1  Fix function name (#4620)
da842f1 is described below

commit da842f113a75815cd75ab1a26a2850e8fb14d8a4
Author: Beto Dealmeida <ro...@dealmeida.net>
AuthorDate: Thu Mar 15 17:52:30 2018 -0700

    Fix function name (#4620)
---
 superset/assets/visualizations/deckgl/multi.jsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/superset/assets/visualizations/deckgl/multi.jsx b/superset/assets/visualizations/deckgl/multi.jsx
index a1bac28..aa712ca 100644
--- a/superset/assets/visualizations/deckgl/multi.jsx
+++ b/superset/assets/visualizations/deckgl/multi.jsx
@@ -3,7 +3,7 @@ import ReactDOM from 'react-dom';
 import $ from 'jquery';
 
 import DeckGLContainer from './DeckGLContainer';
-import { getExploreUrl } from '../../javascripts/explore/exploreUtils';
+import { getExploreLongUrl } from '../../javascripts/explore/exploreUtils';
 import layerGenerators from './layers';
 
 
@@ -47,7 +47,7 @@ function deckMulti(slice, payload, setControlValue) {
       },
     };
 
-    const url = getExploreUrl(subsliceCopy.form_data, 'json');
+    const url = getExploreLongUrl(subsliceCopy.form_data, 'json');
     $.get(url, (data) => {
       // Late import to avoid circular deps
       const layer = layerGenerators[subsliceCopy.form_data.viz_type](subsliceCopy.form_data, data);

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