From dda78370697b4563762ce43dfcf30ac2defd7381 Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Thu, 3 Oct 2024 07:16:00 -0700 Subject: [PATCH] 17671 fix RackType search --- netbox/dcim/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/search.py b/netbox/dcim/search.py index 38c1843fe..45431cb05 100644 --- a/netbox/dcim/search.py +++ b/netbox/dcim/search.py @@ -250,7 +250,7 @@ class RackTypeIndex(SearchIndex): ('description', 500), ('comments', 5000), ) - display_attrs = ('type', 'description') + display_attrs = ('model', 'description') @register_search