remove console.log and change wording (#5702)

This commit is contained in:
Krist Wongsuphasawat 2018-08-23 15:46:32 -07:00 committed by Chris Williams
parent 9fb28b5f4e
commit 0448db3b8d
2 changed files with 1 additions and 3 deletions

View File

@ -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>
}

View File

@ -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;