Skip to content

Commit

Permalink
Merge pull request #44758 from ruthra-kumar/fix_broken_link
Browse files Browse the repository at this point in the history
fix: use utility method to generate url
  • Loading branch information
ruthra-kumar authored Dec 18, 2024
2 parents 878f764 + b970eb8 commit 54eedae
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ frappe.ui.form.on("Plaid Settings", {
method: "erpnext.erpnext_integrations.doctype.plaid_settings.plaid_settings.enqueue_synchronization",
freeze: true,
callback: () => {
let bank_transaction_link = '<a href="#List/Bank Transaction">Bank Transaction</a>';
let bank_transaction_link = frappe.utils.get_form_link(
"Bank Transaction",
"",
true,
"Bank Transaction"
);

frappe.msgprint({
title: __("Sync Started"),
Expand Down

0 comments on commit 54eedae

Please sign in to comment.