From 748beedceadea4da3b114da610f8a676c0816d2c Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Wed, 22 May 2024 20:44:28 +0530 Subject: [PATCH 1/8] fix: added Liked By in columns list --- crm/api/doc.py | 1 + frontend/src/components/CallUI.vue | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crm/api/doc.py b/crm/api/doc.py index b79de0c9..ccde8a13 100644 --- a/crm/api/doc.py +++ b/crm/api/doc.py @@ -248,6 +248,7 @@ def get_list_data( }, {"label": "Assigned To", "type": "Text", "value": "_assign"}, {"label": "Owner", "type": "Link", "value": "owner", "options": "User"}, + {"label": "Liked By", "type": "Data", "value": "_liked_by"}, ] for field in std_fields: diff --git a/frontend/src/components/CallUI.vue b/frontend/src/components/CallUI.vue index eae9e8f3..2123daf9 100644 --- a/frontend/src/components/CallUI.vue +++ b/frontend/src/components/CallUI.vue @@ -189,7 +189,6 @@