FIELD_CHOICES ipam.IPAddress #13488
-
NetBox version3.5.2 Python version3.9 Steps to Reproduceedit /opt/netbox-3.5.2/netbox/netbox/configuration.py Expected BehaviorNew field choices should show with the proper names out lined in the configuration file. Observed BehaviorI have tried changing the words for the new fields and it seems to always be the second letter in each word that gets added as a new field choice. if there is a second field choice added it behaves as expected. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
There is an error in your Python syntax:
You need a comma after the choice to ensure Python processes it as a list item. |
Beta Was this translation helpful? Give feedback.
There is an error in your Python syntax:
You need a comma after the choice to ensure Python processes it as a list item.