fix base64 unicode
This commit is contained in:
@@ -301,7 +301,7 @@ export default {
|
|||||||
}
|
}
|
||||||
}).join(',')
|
}).join(',')
|
||||||
|
|
||||||
return window.btoa(csv + '\n' + rows.map(() => '').join(',') + '\n')
|
return window.btoa(window.unescape(window.encodeURIComponent(csv + '\n' + rows.map(() => '').join(',') + '\n')))
|
||||||
},
|
},
|
||||||
submitters () {
|
submitters () {
|
||||||
return this.template.submitters
|
return this.template.submitters
|
||||||
|
|||||||
Reference in New Issue
Block a user