You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This occurs because the JS embed dependency is coming from a CDN and vega-embed's package.json says the patch fix is within semver. The CDN esm.sh let's you pin an exact dependency version in your import URL, so you can fix this bug by changing the import in
-- import embed from "https://cdn.jsdelivr.net/npm/vega-embed@6/+esm";++ import embed from "https://esm.sh/vega-embed@6?deps=vega@5.26.0";
The text was updated successfully, but these errors were encountered:
First posted in anywidget:
It seems there is a bug in latest patch release of Vega (vega/vega#3829), that breaks the altair "hello, world":
This occurs because the JS
embed
dependency is coming from a CDN andvega-embed
's package.json says the patch fix is within semver. The CDN esm.sh let's you pin an exact dependency version in your import URL, so you can fix this bug by changing the import inThe text was updated successfully, but these errors were encountered: