From 32eeedac24e7df45854d56c825cb67a504196edf Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Tue, 20 May 2025 14:00:47 +0530 Subject: [PATCH] fix(quotation): use `Text Editor` field in alternative items dialog for item description `Data` causes text to overflow - the field is originally a `Text Editor` field Signed-off-by: Akhil Narang (cherry picked from commit c7ea91073e88da4d1c3700c2f1ec62c3b9b1db42) --- erpnext/selling/doctype/quotation/quotation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/doctype/quotation/quotation.js b/erpnext/selling/doctype/quotation/quotation.js index 2e88ba9e482..2a33dd5bf72 100644 --- a/erpnext/selling/doctype/quotation/quotation.js +++ b/erpnext/selling/doctype/quotation/quotation.js @@ -278,7 +278,7 @@ erpnext.selling.QuotationController = class QuotationController extends erpnext. }, }, { - fieldtype: "Data", + fieldtype: "Text Editor", fieldname: "description", label: __("Description"), in_list_view: 1,