refactor: change mime type in PeerViewModal.vue

This commit is contained in:
Ryazanov Alexander Mihailovich 2024-10-08 07:44:03 +03:00 committed by GitHub
parent f22a7e4a2e
commit b496342805
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -100,7 +100,7 @@ function download() {
let text = configString.value
let element = document.createElement('a')
element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text))
element.setAttribute('href', 'data:application/octet-stream;charset=utf-8,' + encodeURIComponent(text))
element.setAttribute('download', filename)
element.style.display = 'none'