Replies: 1 comment 4 replies
-
Netbox version? EDIT: I can confirm this is the case with Netbox v2.11.1. I think you can raise a bug issue for this. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
You can't create interface description more than 100 characters on a device (/dcim/interfaces/add/?device=24).
If you edit the interface, you can set 200 characters in description (/dcim/interfaces/24/edit/).
Can you set the max directly to 200 in create interface description.
Sorry for my english, i am french.
When create :
<input type="text" name="description" maxlength="100" class="form-control" placeholder="None" id="id_description">
When edit :
<input type="text" name="description" maxlength="200" class="form-control" placeholder="None" id="id_description">
Cordialy.
Beta Was this translation helpful? Give feedback.
All reactions