mirror of
https://github.com/apache/superset.git
synced 2026-04-18 15:44:57 +00:00
Geoviz state management fix (#6260)
* Fix deckgl getPoints * Fix CSS * Fix zoom * Fix CategoricalDeckGLContainer * Fix cypress
This commit is contained in:
@@ -11,7 +11,7 @@ describe('getBreakPoints', () => {
|
||||
|
||||
it('returns sorted break points', () => {
|
||||
const fd = { break_points: ['0', '10', '100', '50', '1000'] };
|
||||
const result = getBreakPoints(fd);
|
||||
const result = getBreakPoints(fd, []);
|
||||
const expected = ['0', '10', '50', '100', '1000'];
|
||||
expect(result).toEqual(expected);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user