From e763207181deac5feb764935929c138500ac436e Mon Sep 17 00:00:00 2001 From: Brian Tiemann Date: Fri, 1 Nov 2024 14:29:19 -0400 Subject: [PATCH] Undo unrelated work --- netbox/dcim/forms/model_forms.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/netbox/dcim/forms/model_forms.py b/netbox/dcim/forms/model_forms.py index dfb9aece1..b73268eff 100644 --- a/netbox/dcim/forms/model_forms.py +++ b/netbox/dcim/forms/model_forms.py @@ -913,13 +913,6 @@ class ModularComponentTemplateForm(ComponentTemplateForm): if self.instance.pk: self.fields['module_type'].disabled = True - # Reset help_text to the value from the model field, if it has been overwritten with ExpandableNameField - for field in self.fields: - model_help_text = getattr(self._meta.model, field).field.help_text - if self.fields[field].help_text and model_help_text: - self.fields[field].help_text += ' ' - self.fields[field].help_text += model_help_text - class ConsolePortTemplateForm(ModularComponentTemplateForm): fieldsets = (