mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
fix: Typo payments made
This commit is contained in:
@@ -48,7 +48,7 @@ function BillPaymentTransactionTable({
|
||||
|
||||
// Handles edit bill payment transactions.
|
||||
const handleEditBillPaymentTransactions = ({ bill_payment_id }) => {
|
||||
history.push(`/payment-mades/${bill_payment_id}/edit`);
|
||||
history.push(`/payments-made/${bill_payment_id}/edit`);
|
||||
closeDrawer(DRAWERS.BILL_DETAILS);
|
||||
};
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ function PaymentMadeDetailActionsBar({
|
||||
|
||||
// Handle edit payment made.
|
||||
const handleEditPaymentMade = () => {
|
||||
history.push(`/payment-mades/${paymentMadeId}/edit`);
|
||||
history.push(`/payments-made/${paymentMadeId}/edit`);
|
||||
closeDrawer(DRAWERS.PAYMENT_MADE_DETAILS);
|
||||
};
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ function VendorDetailsActionsBar({
|
||||
};
|
||||
|
||||
const handleNewPaymentClick = () => {
|
||||
history.push('/payment-mades/new');
|
||||
history.push('/payments-made/new');
|
||||
closeDrawer(DRAWERS.VENDOR_DETAILS);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user