You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by cc...@apache.org on 2018/08/23 22:46:35 UTC

[incubator-superset] branch master updated: remove console.log and change wording (#5702)

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

ccwilliams 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 0448db3  remove console.log and change wording (#5702)
0448db3 is described below

commit 0448db3b8dbdaefdc20c862e6622df1e3114da1a
Author: Krist Wongsuphasawat <kr...@gmail.com>
AuthorDate: Thu Aug 23 15:46:32 2018 -0700

    remove console.log and change wording (#5702)
---
 superset/assets/src/explore/components/ControlPanelsContainer.jsx | 2 +-
 superset/assets/src/visualizations/word_cloud.js                  | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/superset/assets/src/explore/components/ControlPanelsContainer.jsx b/superset/assets/src/explore/components/ControlPanelsContainer.jsx
index d188bfe..fba2e57 100644
--- a/superset/assets/src/explore/components/ControlPanelsContainer.jsx
+++ b/superset/assets/src/explore/components/ControlPanelsContainer.jsx
@@ -134,7 +134,7 @@ class ControlPanelsContainer extends React.Component {
               {querySectionsToRender.map(this.renderControlPanelSection)}
             </Tab>
             {displaySectionsToRender.length > 0 &&
-              <Tab eventKey="display" title={t('Style')}>
+              <Tab eventKey="display" title={t('Visual Properties')}>
                 {displaySectionsToRender.map(this.renderControlPanelSection)}
               </Tab>
             }
diff --git a/superset/assets/src/visualizations/word_cloud.js b/superset/assets/src/visualizations/word_cloud.js
index 6fdd962..75d68e9 100644
--- a/superset/assets/src/visualizations/word_cloud.js
+++ b/superset/assets/src/visualizations/word_cloud.js
@@ -33,8 +33,6 @@ function wordCloud(element, props) {
     colorScheme,
   } = props;
 
-  console.log('data', data);
-
   const chart = d3.select(element);
   const size = [width, height];
   const rotationFn = ROTATION[rotation] || ROTATION.random;