Merge pull request #47111 from sokumon/supplier-address

fix: convert to text before setting value
This commit is contained in:
ruthra kumar
2025-04-29 11:24:29 +05:30
committed by GitHub

View File

@@ -160,7 +160,7 @@ frappe.ui.form.on("Supplier", {
address_dict: frm.doc.supplier_primary_address,
},
callback: function (r) {
frm.set_value("primary_address", r.message);
frm.set_value("primary_address", frappe.utils.html2text(r.message));
},
});
}