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:
parent
8fab0f3324
commit
9138c73f52
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user