From 16281bd27604dfa64af8f754e8c13bcd544037dd Mon Sep 17 00:00:00 2001 From: bctiemann Date: Wed, 11 Dec 2024 08:26:48 -0500 Subject: [PATCH] Fixes: #18192 - Use assigned_object instead of interface in display_attrs (#18199) * Use assigned_object instead of interface in display_attrs * Remove mac_address --- 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 6b03d8b43..b964421de 100644 --- a/netbox/dcim/search.py +++ b/netbox/dcim/search.py @@ -105,7 +105,7 @@ class MACAddressIndex(SearchIndex): ('mac_address', 100), ('description', 500), ) - display_attrs = ('mac_address', 'interface') + display_attrs = ('assigned_object', 'description') @register_search