Skip to content

Commit

Permalink
fix: contact: tickets: remove fields: already set to * (#1152)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssiyad authored May 5, 2023
1 parent 85c0c18 commit 958948a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
11 changes: 0 additions & 11 deletions desk/src/components/desk/contacts/ContactRelatedInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,6 @@
ref="miniTicketList"
:options="{
doctype: 'HD Ticket',
fields: [
'_assign',
'status',
'priority',
'subject',
'ticket_type',
'creation',
'modified',
'name',
'_seen',
],
limit: 20,
order_by: 'modified desc',
filters: {
Expand Down
3 changes: 2 additions & 1 deletion helpdesk/extends/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,11 @@ def get_list_meta(
):
check_permissions(doctype, parent)

query: Query = get_query(
query = get_query(
table=doctype,
filters=filters,
group_by=group_by,
fields=["name"],
)

query = apply_custom_filters(doctype, query)
Expand Down

0 comments on commit 958948a

Please sign in to comment.