Skip to content

Commit

Permalink
fix: resolve issues post 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kristw authored and zhaoyongjie committed Nov 26, 2021
1 parent 6d6a43f commit 5c5a060
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe('nvd3/utils', () => {
});
it('returns a number formatter otherwise', () => {
expect(getTimeOrNumberFormatter('.3s')(3000000)).toBe('3.00M');
expect(getTimeOrNumberFormatter()(3000100)).toBe('3.00M');
expect(getTimeOrNumberFormatter()(3000100)).toBe('3M');
});
});

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FormData as ChartFormData } from '@superset-ui/chart';
import { ChartFormData } from '@superset-ui/chart';

// FormData for wordcloud contains both common properties of all form data
// and properties specific to wordcloud vizzes
Expand Down

0 comments on commit 5c5a060

Please sign in to comment.