diff --git a/crm/api/activities.py b/crm/api/activities.py index ef42a929..42611b24 100644 --- a/crm/api/activities.py +++ b/crm/api/activities.py @@ -97,6 +97,7 @@ def get_deal_activities(name): for comment in docinfo.comments: activity = { + "name": comment.name, "activity_type": "comment", "creation": comment.creation, "owner": comment.owner, @@ -203,6 +204,7 @@ def get_lead_activities(name): for comment in docinfo.comments: activity = { + "name": comment.name, "activity_type": "comment", "creation": comment.creation, "owner": comment.owner, diff --git a/frontend/src/components/Activities.vue b/frontend/src/components/Activities.vue index d93285dd..ad1a4148 100644 --- a/frontend/src/components/Activities.vue +++ b/frontend/src/components/Activities.vue @@ -417,7 +417,11 @@ -