Skip to content

Commit

Permalink
Use dist instead of src in mapbox (#2027)
Browse files Browse the repository at this point in the history
I had issues compiling the src, I think it's because the syntax is different than the one used here?
With the dist it works fine.

I also saw there were other related issues in the past, so I'm suggesting to switch to the dist file.
  • Loading branch information
0x0ece authored and mistercrunch committed Jan 24, 2017
1 parent e84c639 commit a3a0708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/assets/visualizations/mapbox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import d3 from 'd3';
import React from 'react';
import ReactDOM from 'react-dom';
import MapGL from 'react-map-gl';
import ScatterPlotOverlay from 'react-map-gl/src/overlays/scatterplot.react.js';
import ScatterPlotOverlay from 'react-map-gl/dist/overlays/scatterplot.react.js';
import Immutable from 'immutable';
import supercluster from 'supercluster';
import ViewportMercator from 'viewport-mercator-project';
Expand Down

0 comments on commit a3a0708

Please sign in to comment.