From e3ef3be490d86cc422527899fc42d23840d6abb0 Mon Sep 17 00:00:00 2001 From: Pandiyan P Date: Wed, 16 Sep 2026 13:10:22 +0530 Subject: [PATCH] fix: avoid pricing rule help template errors (#59097) (cherry picked from commit 2273448f1bf6966f28a415939208cac7108511db) --- erpnext/accounts/doctype/pricing_rule/pricing_rule.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/accounts/doctype/pricing_rule/pricing_rule.js b/erpnext/accounts/doctype/pricing_rule/pricing_rule.js index 7cce98f3323..914d43ab5dd 100644 --- a/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +++ b/erpnext/accounts/doctype/pricing_rule/pricing_rule.js @@ -108,7 +108,7 @@ frappe.ui.form.on("Pricing Rule", { `; - frm.set_df_property("pricing_rule_help", "options", help_content); + frm.get_field("pricing_rule_help").html(help_content); frm.events.set_options_for_applicable_for(frm); frm.trigger("toggle_reqd_apply_on"); },