Fixes #19376: Fix FieldDoesNotExist exception when global search results include a contact (#19389)

This commit is contained in:
Jeremy Stretch 2025-05-02 15:24:08 -04:00 committed by GitHub
parent 4868818576
commit 6e49cee718
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,7 +15,7 @@ class ContactIndex(SearchIndex):
('description', 500), ('description', 500),
('comments', 5000), ('comments', 5000),
) )
display_attrs = ('group', 'title', 'phone', 'email', 'description') display_attrs = ('title', 'phone', 'email', 'description')
@register_search @register_search