Skip to content

Commit

Permalink
fix(plugin-chart-word-cloud): make colors schemes work (apache#788)
Browse files Browse the repository at this point in the history
  • Loading branch information
villebro authored and zhaoyongjie committed Nov 26, 2021
1 parent 9c427f0 commit e71af2f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import buildQuery from './buildQuery';
import { WordCloudFormData } from '../types';
import thumbnail from '../images/thumbnail.png';
import controlPanel from './controlPanel';
import configureEncodable from '../configureEncodable';

configureEncodable();

const metadata = new ChartMetadata({
credits: ['https://github.com/jasondavies/d3-cloud'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ import { ChartPlugin } from '@superset-ui/core';
import createMetadata from './createMetadata';
import transformProps from './transformProps';
import controlPanel from './controlPanel';
import configureEncodable from '../configureEncodable';

configureEncodable();

export default class BoxPlotChartPlugin extends ChartPlugin {
constructor() {
Expand Down

0 comments on commit e71af2f

Please sign in to comment.