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", diff --git a/crm/integrations/exotel/handler.py b/crm/integrations/exotel/handler.py index 3d319fc4f..8809be6a6 100644 --- a/crm/integrations/exotel/handler.py +++ b/crm/integrations/exotel/handler.py @@ -278,8 +278,6 @@ def update_call_log(call_payload, status="Ringing", call_log=None): if direction == "incoming" and call_payload.get("AgentEmail"): call_log.receiver = call_payload.get("AgentEmail") - else: - call_log.caller = frappe.session.user call_log.save(ignore_permissions=True) frappe.db.commit() diff --git a/frontend/src/components/Activities/NoteArea.vue b/frontend/src/components/Activities/NoteArea.vue index f04234d7e..0ebbd411a 100644 --- a/frontend/src/components/Activities/NoteArea.vue +++ b/frontend/src/components/Activities/NoteArea.vue @@ -28,7 +28,7 @@ v-if="note.content" :content="note.content" :editable="false" - editor-class="!prose-sm max-w-none !text-sm text-ink-gray-5 focus:outline-none" + editor-class="prose-sm text-p-sm max-w-none text-ink-gray-5 focus:outline-none" class="flex-1 overflow-hidden" />