8000 Fix `mablibre` source map by archmoj · Pull Request #7204 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

Fix mablibre source map #7204

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on 8000 GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 4, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix maplibre source map by using minified bundle
  • Loading branch information
archmoj committed Oct 3, 2024
commit 189bce2c6b573f09a06afe10c0b30447efa9542e
2 changes: 1 addition & 1 deletion src/plots/map/map.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var maplibregl = require('maplibre-gl/dist/maplibre-gl-unminified');
var maplibregl = require('maplibre-gl');

var Lib = require('../../lib');
var geoUtils = require('../../lib/geo_location_utils');
Expand Down
0