From 89e2b3bda46515bb45b063148482f5a8a5fd84c6 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 12 Jun 2012 13:11:29 +0530 Subject: [PATCH] minor fix in lead's listview --- erpnext/selling/doctype/lead/listview.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/erpnext/selling/doctype/lead/listview.js b/erpnext/selling/doctype/lead/listview.js index 193a3983b9e..ca18dc6941b 100644 --- a/erpnext/selling/doctype/lead/listview.js +++ b/erpnext/selling/doctype/lead/listview.js @@ -26,9 +26,10 @@ wn.doclistviews['Lead'] = wn.views.ListView.extend({ columns: [ {width: '3%', content: 'check'}, + {width: '5%', content:'avatar'}, {width: '30%', content:'lead_name'}, {width: '12%', content:'status_html'}, - {width: '42%', content:'lead_status+tags', css: {color:'#222'}}, - {width: '13%', content:'modified', css: {'text-align': 'right', 'color':'#777'}} + {width: '38%', content:'lead_status+tags', css: {color:'#222'}}, + {width: '12%', content:'modified', css: {'text-align': 'right', 'color':'#777'}} ] })