فهرست منبع

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

Jeremy Stretch 9 ماه پیش
والد
کامیت
6e49cee718
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      netbox/tenancy/search.py

+ 1 - 1
netbox/tenancy/search.py

@@ -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