From 221fa8addcb8c98dd95abb7435a1d80743698230 Mon Sep 17 00:00:00 2001 From: Jamie Murphy Date: Mon, 29 May 2023 21:33:47 +0100 Subject: [PATCH] typo --- netbox/extras/models/customfields.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox/extras/models/customfields.py b/netbox/extras/models/customfields.py index ed77f7568..3f25f347f 100644 --- a/netbox/extras/models/customfields.py +++ b/netbox/extras/models/customfields.py @@ -162,7 +162,7 @@ class CustomField(CloningMixin, ExportTemplatesMixin, ChangeLoggedModel): base_field=models.CharField(max_length=100), blank=True, null=True, - help_text=_('Comma-separated list of available choices (for url fields)') + help_text=_('Comma-separated list of available choices (for selection fields)') ) ui_visibility = models.CharField( max_length=50, @@ -178,7 +178,7 @@ class CustomField(CloningMixin, ExportTemplatesMixin, ChangeLoggedModel): ) new_window = models.BooleanField( default=False, - help_text=_("Force link to open in a new window (for selection fields)") + help_text=_("Force link to open in a new window (for url fields)") ) objects = CustomFieldManager()