mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-18 13:38:16 -06:00
13983 fix escape handling
This commit is contained in:
parent
e13dd5d905
commit
ef768335c1
@ -108,7 +108,7 @@ class CustomFieldChoiceSetForm(BootstrapMixin, forms.ModelForm):
|
|||||||
super().__init__(*args, initial=initial, **kwargs)
|
super().__init__(*args, initial=initial, **kwargs)
|
||||||
|
|
||||||
# Escape colons in extra_choices
|
# Escape colons in extra_choices
|
||||||
if 'extra_choices' in self.initial:
|
if 'extra_choices' in self.initial and self.initial['extra_choices']:
|
||||||
choices = []
|
choices = []
|
||||||
for choice in self.initial['extra_choices']:
|
for choice in self.initial['extra_choices']:
|
||||||
choice = (choice[0].replace(':', '\\:'), choice[1].replace(':', '\\:'))
|
choice = (choice[0].replace(':', '\\:'), choice[1].replace(':', '\\:'))
|
||||||
|
Loading…
Reference in New Issue
Block a user