close #1456 Fixed: Amount is erased when changing account in payments

This commit is contained in:
Cüneyt Şentürk
2020-06-04 22:21:37 +03:00
parent fd5d1398f1
commit fe5329d6cd
14 changed files with 20 additions and 15 deletions

View File

@ -184,10 +184,10 @@ export default {
}
})
.then(response => {
this.currency = response.data;
this.form.currency_code = response.data.currency_code;
this.form.currency_rate = response.data.currency_rate;
this.currency = response.data;
})
.catch(error => {
});