From b21d2aea6f24f4da12e58d4b309c1b9b7eca0400 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Thu, 30 Jan 2025 12:54:48 +0530 Subject: [PATCH] chore: renamed From & To as Caller & Receiver --- crm/fcrm/doctype/crm_call_log/crm_call_log.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crm/fcrm/doctype/crm_call_log/crm_call_log.py b/crm/fcrm/doctype/crm_call_log/crm_call_log.py index dd873e6d7..e644b6e1f 100644 --- a/crm/fcrm/doctype/crm_call_log/crm_call_log.py +++ b/crm/fcrm/doctype/crm_call_log/crm_call_log.py @@ -13,14 +13,14 @@ class CRMCallLog(Document): def default_list_data(): columns = [ { - "label": "From", + "label": "Caller", "type": "Link", "key": "caller", "options": "User", "width": "9rem", }, { - "label": "To", + "label": "Receiver", "type": "Link", "key": "receiver", "options": "User",