Skip to content

Commit

Permalink
fix: pass false instead of null
Browse files Browse the repository at this point in the history
Needs to be a boolean value in order to pass type validations in backend.
  • Loading branch information
barredterra committed Feb 28, 2024
1 parent 8aed9c7 commit 189e8d0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ erpnext.accounts.bank_reconciliation.CreateTab = class CreateTab {

// Create new voucher and delete or refresh current BT row depending on reconciliation
this.create_voucher_bts(
null,
false,
(message) => me.actions_panel.after_transaction_reconcile(
message, true, document_type
)
)
);
}

edit_in_full_page() {
Expand Down

0 comments on commit 189e8d0

Please sign in to comment.