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 = (