From 6e49cee7181784bf25973a35425408f1759fb67c Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 2 May 2025 15:24:08 -0400 Subject: [PATCH] Fixes #19376: Fix FieldDoesNotExist exception when global search results include a contact (#19389) --- netbox/tenancy/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/tenancy/search.py b/netbox/tenancy/search.py index f9441c974..79099d8c7 100644 --- a/netbox/tenancy/search.py +++ b/netbox/tenancy/search.py @@ -15,7 +15,7 @@ class ContactIndex(SearchIndex): ('description', 500), ('comments', 5000), ) - display_attrs = ('group', 'title', 'phone', 'email', 'description') + display_attrs = ('title', 'phone', 'email', 'description') @register_search