From 12fbecf48bc781df144d5e1311f613578131565b Mon Sep 17 00:00:00 2001 From: Himanshu Warekar <himanshuwarekar@yahoo.com> Date: Fri, 9 Aug 2019 17:50:03 +0530 Subject: [PATCH] fix: use primary label instead of bold letters --- erpnext/public/js/templates/contact_list.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/public/js/templates/contact_list.html b/erpnext/public/js/templates/contact_list.html index a90580f652..0a339aa539 100644 --- a/erpnext/public/js/templates/contact_list.html +++ b/erpnext/public/js/templates/contact_list.html @@ -17,7 +17,7 @@ {% if (contact_list[i].phones || contact_list[i].email_ids) { %} <p> {% if(contact_list[i].phone) { %} - {%= __("Phone ") %}: <b>{%= contact_list[i].phone %}</b><br> + {%= __("Phone ") %}: {%= contact_list[i].phone %}<span class="text-muted"> ({%= __("Primary") %})</span><br> {% endif %} {% if(contact_list[i].phone_nos) { %} {% for(var j=0, k=contact_list[i].phone_nos.length; j<k; j++) { %} @@ -27,7 +27,7 @@ </p> <p> {% if(contact_list[i].email_id) { %} - {%= __("Email ") %}: <b>{%= contact_list[i].email_id %}</b><br> + {%= __("Email ") %}: {%= contact_list[i].email_id %}<span class="text-muted"> ({%= __("Primary") %})</span><br> {% endif %} {% if(contact_list[i].email_ids) { %} {% for(var j=0, k=contact_list[i].email_ids.length; j<k; j++) { %}