New code for edit transaction, and some tests.

This commit is contained in:
James Cole
2019-07-19 16:08:42 +02:00
parent a42992efb0
commit 4de537ce76
10 changed files with 990 additions and 607 deletions

View File

@@ -138,9 +138,13 @@
}
},
selectedItem: function (e) {
console.log('selectedItem()');
if (typeof this.name === 'undefined') {
return;
}
if(typeof this.name === 'string') {
console.log('Is a string.');
}
// emit the fact that the user selected a type of account
// (influencing the destination)
this.$emit('select:account', this.name);