diff --git a/crm/api/doc.py b/crm/api/doc.py index b79de0c9..7f47b095 100644 --- a/crm/api/doc.py +++ b/crm/api/doc.py @@ -215,6 +215,9 @@ def get_list_data( rows.append(column.get("key")) column["label"] = _(column.get("label")) + if column.get("key") == "_liked_by" and column.get("width") == "10rem": + column["width"] = "50px" + data = frappe.get_list( doctype, fields=rows, @@ -248,6 +251,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/frappe-ui b/frappe-ui index 38a7784d..5e726bf5 160000 --- a/frappe-ui +++ b/frappe-ui @@ -1 +1 @@ -Subproject commit 38a7784d7be13493e975a9def90a28b1f5cda095 +Subproject commit 5e726bf5ab8cd6f23eaf0f41df48126ba40451a2 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 @@