Fix for multibyte ascii
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
soraefir 2023-06-14 15:51:23 +02:00
parent 245fab0623
commit bf4ba27381
Signed by: sora
GPG Key ID: A362EA0491E2EEA0

View File

@ -257,7 +257,7 @@ const app = new Vue({
}, },
save_data: function(){ save_data: function(){
this.impexp = window.btoa(JSON.stringify(this.journey_data)); this.impexp = toEncoded(JSON.stringify(this.journey_data));
console.log(this.journey_data) console.log(this.journey_data)
axios.post('/api/'+this.journey_id, this.journey_data).then(response => { axios.post('/api/'+this.journey_id, this.journey_data).then(response => {
console.log("Saved...") console.log("Saved...")