2
0
mirror of https://github.com/frappe/books.git synced 2024-12-22 02:49:03 +00:00

fix: replaced TypeScript any with appropriate types

This commit is contained in:
AbleKSaju 2024-12-07 12:37:43 +05:30
parent 22f71b215f
commit 7ff492adfc
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@
>
<Row
v-if="items"
v-for="row in items as any"
v-for="row in items as POSItem[]"
:ratio="ratio"
:border="true"
class="

View File

@ -33,7 +33,7 @@
style="height: 65vh; width: 60vh"
>
<Row
v-for="row in savedInvoices as any"
v-for="row in savedInvoices as SalesInvoice[]"
:key="row.name"
:ratio="ratio"
:border="true"