diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-03 22:37:23 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-03 22:37:23 +0530 |
commit | 366e2193c855ab28917b743c71a877ad5b76c934 (patch) | |
tree | 54fa67047cb7ff3da8eb67aaebca6c4eeb7f0803 /src/views/EditInvoice.vue | |
parent | ae45ad12a5840348550078cb62042e813a3492b5 (diff) |
fixed typescript error
Diffstat (limited to 'src/views/EditInvoice.vue')
-rw-r--r-- | src/views/EditInvoice.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/EditInvoice.vue b/src/views/EditInvoice.vue index 983e9ef..b134721 100644 --- a/src/views/EditInvoice.vue +++ b/src/views/EditInvoice.vue @@ -43,5 +43,5 @@ onMounted(() => { <template> <invoiceHeader :invoice="invoice" /> - <itemSelector :invoiceId="invoice.ID" @added="refreshItems()"/> + <itemSelector :invoice="invoice" @added="refreshItems()"/> </template> |