refactor: change download type in InterfaceView.vue

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

View File

@ -52,7 +52,7 @@ async function download() {
let text = interfaces.configuration
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'