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 57278f8 commit ed0e384Copy full SHA for ed0e384
app/components/Package/VersionDistribution.vue
@@ -223,7 +223,9 @@ const chartConfig = computed<VueUiXyConfig>(() => {
223
loadFile(url, buildExportFilename('csv'))
224
URL.revokeObjectURL(url)
225
},
226
- svg: ({ blob }) => {
+ svg: args => {
227
+ const blob = args?.blob
228
+ if (!blob) return
229
const url = URL.createObjectURL(blob)
230
loadFile(url, buildExportFilename('svg'))
231
0 commit comments