diff --git a/erpnext/projects/doctype/task/task_list.js b/erpnext/projects/doctype/task/task_list.js index 25a1cc4ce2..ee224d9ebe 100644 --- a/erpnext/projects/doctype/task/task_list.js +++ b/erpnext/projects/doctype/task/task_list.js @@ -28,6 +28,13 @@ frappe.listview_settings['Task'] = { var html = `
Project: ${task.project}
`; html += `Progress: ${ganttobj.progress}
`; + + if(task._assign_list) { + html += task._assign_list.reduce( + (html, user) => html + frappe.avatar(user) + , ''); + } + return html; }