From e5de85aec2cf864c05d484b0abad607f99bc490e Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 7 Jun 2012 11:41:42 +0530 Subject: [PATCH] fix in communication list in parent forms --- erpnext/support/doctype/communication/communication.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/support/doctype/communication/communication.js b/erpnext/support/doctype/communication/communication.js index 87e0aad819..ade917f5e4 100644 --- a/erpnext/support/doctype/communication/communication.js +++ b/erpnext/support/doctype/communication/communication.js @@ -42,7 +42,7 @@ cur_frm.cscript.render_communication_list = function(doc, dt, dn) { if(data.content && data.content.length > 50) { data.content = '' + - data.description.substr(0,50) + '...'; + data.content.substr(0,50) + '...'; } },