mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
fix: date range in contact transactions.
This commit is contained in:
@@ -40,8 +40,8 @@ export default function CustomersTransactionsTable({
|
||||
companyName={companyName}
|
||||
sheetType={formatMessage({ id: 'customers_transactions' })}
|
||||
loading={isCustomersTransactionsLoading}
|
||||
fromDate={query.fromDate}
|
||||
toDate={query.toDate}
|
||||
fromDate={query.from_date}
|
||||
toDate={query.to_date}
|
||||
>
|
||||
<DataTable
|
||||
className="bigcapital-datatable--financial-report"
|
||||
|
||||
@@ -41,8 +41,8 @@ export default function VendorsTransactionsTable({
|
||||
companyName={companyName}
|
||||
sheetType={formatMessage({ id: 'vendors_transactions' })}
|
||||
loading={isVendorsTransactionsLoading}
|
||||
fromDate={query.fromDate}
|
||||
toDate={query.toDate}
|
||||
fromDate={query.from_date}
|
||||
toDate={query.to_date}
|
||||
>
|
||||
<DataTable
|
||||
className="bigcapital-datatable--financial-report"
|
||||
|
||||
Reference in New Issue
Block a user