From e13581b6a86702468a75f31cfa5d7e90a3b490b8 Mon Sep 17 00:00:00 2001 From: Brian Tiemann Date: Mon, 30 Mar 2026 16:21:38 -0400 Subject: [PATCH] Fix 3 remaining stylistic inconsistencies --- netbox/extras/ui/panels.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/netbox/extras/ui/panels.py b/netbox/extras/ui/panels.py index 164af4c5b..44d6c7759 100644 --- a/netbox/extras/ui/panels.py +++ b/netbox/extras/ui/panels.py @@ -153,7 +153,6 @@ class CustomFieldBehaviorPanel(panels.ObjectAttributesPanel): search_weight = attrs.TemplatedAttr( 'search_weight', - label=_('Search Weight'), template_name='extras/customfield/attrs/search_weight.html', ) filter_logic = attrs.ChoiceAttr('filter_logic') @@ -401,7 +400,6 @@ class TagPanel(panels.ObjectAttributesPanel): weight = attrs.NumericAttr('weight') tagged_items = attrs.TemplatedAttr( 'extras_taggeditem_items', - label=_('Tagged Items'), template_name='extras/tag/attrs/tagged_item_count.html', ) @@ -487,7 +485,7 @@ class ConfigTemplatePanel(panels.ObjectAttributesPanel): class ImageAttachmentPanel(panels.ObjectAttributesPanel): title = _('Image Attachment') - parent = attrs.RelatedObjectAttr('parent', linkify=True, label=_('Parent Object')) + parent = attrs.RelatedObjectAttr('parent', linkify=True, label=_('Parent object')) name = attrs.TextAttr('name') description = attrs.TextAttr('description')