1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

fix exporting internal tables

This commit is contained in:
Maurits Lourens 2021-09-06 12:07:05 +02:00
parent e68fa5b6af
commit 52454c15fa

View file

@ -18,12 +18,10 @@
let exportFormat = FORMATS[0].key
async function exportView() {
const filename = `export.${exportFormat}`
download(
`/api/views/export?view=${encodeURIComponent(
view
)}&format=${exportFormat}`,
filename
)}&format=${exportFormat}`
)
}
</script>