fix in communication list in parent forms
diff --git a/erpnext/support/doctype/communication/communication.js b/erpnext/support/doctype/communication/communication.js
index 87e0aad..ade917f 100644
--- a/erpnext/support/doctype/communication/communication.js
+++ b/erpnext/support/doctype/communication/communication.js
@@ -42,7 +42,7 @@
 
 			if(data.content && data.content.length > 50) {
 				data.content = '<span title="'+data.content+'">' +
-					data.description.substr(0,50) + '...</span>';
+					data.content.substr(0,50) + '...</span>';
 			}
 
 		},