Skip to content

Commit

Permalink
fix: replaced lead/deal_owner with assigned_to in default lead/deal l…
Browse files Browse the repository at this point in the history
…ist view settings
  • Loading branch information
shariquerik committed Dec 27, 2023
1 parent 2bec432 commit 783aca5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions crm/fcrm/doctype/crm_deal/crm_deal.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,9 @@ def default_list_data():
'width': '11rem',
},
{
'label': 'Deal Owner',
'type': 'Link',
'key': 'deal_owner',
'options': 'User',
'label': 'Assigned To',
'type': 'Text',
'key': '_assign',
'width': '10rem',
},
{
Expand All @@ -166,6 +165,7 @@ def default_list_data():
"first_response_time",
"first_responded_on",
"modified",
"_assign",
]
return {'columns': columns, 'rows': rows}

Expand Down
8 changes: 4 additions & 4 deletions crm/fcrm/doctype/crm_lead/crm_lead.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,9 @@ def default_list_data():
'width': '11rem',
},
{
'label': 'Lead Owner',
'type': 'Link',
'key': 'lead_owner',
'options': 'User',
'label': 'Assigned To',
'type': 'Text',
'key': '_assign',
'width': '10rem',
},
{
Expand All @@ -258,6 +257,7 @@ def default_list_data():
"first_response_time",
"first_responded_on",
"modified",
"_assign",
"image",
]
return {'columns': columns, 'rows': rows}
Expand Down

0 comments on commit 783aca5

Please sign in to comment.