From 2273448f1bf6966f28a415939208cac7108511db 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) --- 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 0a4272c518d..1137277feaf 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"); },