minor fix in support ticket
diff --git a/selling/doctype/customer/customer.js b/selling/doctype/customer/customer.js
index 845f543..9c748e6 100644
--- a/selling/doctype/customer/customer.js
+++ b/selling/doctype/customer/customer.js
@@ -60,7 +60,7 @@
cur_frm.communication_view = new wn.views.CommunicationList({
list: wn.model.get("Communication", {"customer": doc.name}),
parent: cur_frm.fields_dict.communication_html.wrapper,
- doc: doc
+ doc: doc,
});
}
}
diff --git a/support/doctype/support_ticket/support_ticket.js b/support/doctype/support_ticket/support_ticket.js
index 3e607fb..3484bf3 100644
--- a/support/doctype/support_ticket/support_ticket.js
+++ b/support/doctype/support_ticket/support_ticket.js
@@ -51,6 +51,7 @@
var comm_list = wn.model.get("Communication", {"support_ticket": doc.name})
comm_list.push({
"sender": doc.raised_by,
+ "creation": doc.creation,
"modified": doc.creation,
"content": doc.description});