We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 933101a commit ea89876Copy full SHA for ea89876
news/2 Fixes/10168.md
@@ -0,0 +1 @@
1
+Fix svg mimetype so it shows up correctly in richest mimetype order.
src/datascience-ui/interactive-common/transforms.tsx
@@ -65,7 +65,7 @@ const mimeTypeToImport: TransformData[] = [
65
const module = await import(/* webpackChunkName: "plotly" */ '@nteract/transform-plotly');
66
return module.PlotlyTransform;
67
}),
68
- new TransformData('image/svg', async () => {
+ new TransformData('image/svg+xml', async () => {
69
const module = await import(/* webpackChunkName: "nteract_transforms" */ '@nteract/transforms');
70
return module.SVGTransform;
71
0 commit comments