Browse Source

Fix loan creation error

master
Immanuel Onyeka 2 years ago
parent
commit
86985c4daf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      components/new.vue

+ 1
- 1
components/new.vue View File

@@ -236,7 +236,7 @@ const newFee = {
// Clone loan from initial example as a new loan
function create() {
this.estimate.loans.push(
Object.assign({}, example, {fees: createFees()})
Object.assign({}, example, {fees: this.createFees()})
)
}



Loading…
Cancel
Save