Skip to content

Commit 6e49cee

Browse files
Fixes #19376: Fix FieldDoesNotExist exception when global search results include a contact (#19389)
1 parent 4868818 commit 6e49cee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netbox/tenancy/search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ContactIndex(SearchIndex):
1515
('description', 500),
1616
('comments', 5000),
1717
)
18-
display_attrs = ('group', 'title', 'phone', 'email', 'description')
18+
display_attrs = ('title', 'phone', 'email', 'description')
1919

2020

2121
@register_search

0 commit comments

Comments
 (0)