From b9b3afcd07474def760830be2fbee7d92e0f4e25 Mon Sep 17 00:00:00 2001 From: Daniel Sheppard Date: Thu, 7 May 2026 09:21:05 -0500 Subject: [PATCH] Fixes: #153 - Changes display attribute from manufacturer to vendor --- netbox_lifecycle/search.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netbox_lifecycle/search.py b/netbox_lifecycle/search.py index 23e4ee4..28a8390 100644 --- a/netbox_lifecycle/search.py +++ b/netbox_lifecycle/search.py @@ -22,7 +22,7 @@ class SupportSKUIndex(SearchIndex): ('description', 4000), ('comments', 5000), ) - display_attrs = ('manufacturer', 'description') + display_attrs = ('vendor', 'description') @register_search @@ -33,7 +33,7 @@ class SupportContractIndex(SearchIndex): ('description', 4000), ('comments', 5000), ) - display_attrs = ('vendor', 'start', 'renewal', 'end', 'description') + display_attrs = ('contract', 'sku', 'device', 'license', 'description') @register_search @@ -58,7 +58,7 @@ class LicenseIndex(SearchIndex): ('description', 4000), ('comments', 5000), ) - display_attrs = ('manufacturer', 'description') + display_attrs = ('description', ) @register_search