cleanup
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
choelzl 2021-07-16 19:11:25 +02:00
parent f63085bef7
commit 656d93fbbe
Signed by: sora
GPG Key ID: A362EA0491E2EEA0
2 changed files with 2 additions and 2 deletions

View File

@ -184,7 +184,7 @@ const app = new Vue({
})
},
import_data:function(){
this.journey_data = JSON.parse(window.atob(this.impexp));
this.journey_data = Object.assign({}, JSON.parse(window.atob(this.impexp)));
},
export_data:function(){
this.impexp = window.btoa(JSON.stringify(this.journey_data));

View File

@ -137,7 +137,7 @@
<div class="col-12 col-sm-4">
<div class="row text-center">
<div><label>Date Range</label></div>
<div class="input ">
<div class="input text-dark">
<date-picker v-model="item.dateRange" range :placeholder="item.dateRange"></date-picker>
</div>
</div>