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:
parent
22f71b215f
commit
7ff492adfc
@ -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="
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user