1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-03 08:45:40 +02:00

fix export archive file ext (#2254)

This commit is contained in:
Doug Lauder 2022-02-04 17:03:50 -05:00 committed by GitHub
parent 8fab0f3324
commit 9138c73f52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ class Archiver {
link.style.display = 'none'
const date = new Date()
const filename = `archive-${date.getFullYear()}-${date.getMonth() + 1}-${date.getDate()}.focalboard`
const filename = `archive-${date.getFullYear()}-${date.getMonth() + 1}-${date.getDate()}.boardarchive`
const file = new Blob([blob], {type: 'application/octet-stream'})
link.href = URL.createObjectURL(file)