From commits-return-776-archive-asf-public=cust-asf.ponee.io@superset.incubator.apache.org Fri Mar 16 01:52:34 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 38DA8180654 for ; Fri, 16 Mar 2018 01:52:34 +0100 (CET) Received: (qmail 78605 invoked by uid 500); 16 Mar 2018 00:52:33 -0000 Mailing-List: contact commits-help@superset.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@superset.incubator.apache.org Delivered-To: mailing list commits@superset.incubator.apache.org Received: (qmail 78596 invoked by uid 99); 16 Mar 2018 00:52:33 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Mar 2018 00:52:33 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 9223D8063A; Fri, 16 Mar 2018 00:52:32 +0000 (UTC) Date: Fri, 16 Mar 2018 00:52:32 +0000 To: "commits@superset.apache.org" Subject: [incubator-superset] branch master updated: Fix function name (#4620) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <152116155241.29167.16659698067973591192@gitbox.apache.org> From: maximebeauchemin@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-superset X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 7da164d386a390ae98c9344e9665606509fae5df X-Git-Newrev: da842f113a75815cd75ab1a26a2850e8fb14d8a4 X-Git-Rev: da842f113a75815cd75ab1a26a2850e8fb14d8a4 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 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.