Skip to content

Commit a6e614d

Browse files
committed
Increase length-limit on the notes field of the Generic IPR disclosure form. Additional fix for ietf-tools#3104. Commit ready for merge.
- Legacy-Id: 18622
1 parent 02718dc commit a6e614d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/ipr/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ class GenericDisclosureForm(forms.Form):
194194
otherwise create a GenericIprDisclosure object."""
195195
compliant = forms.BooleanField(label="This disclosure complies with RFC 3979", required=False)
196196
holder_legal_name = forms.CharField(max_length=255)
197-
notes = forms.CharField(label="Additional notes", max_length=255,widget=forms.Textarea,required=False, strip=False)
197+
notes = forms.CharField(label="Additional notes", max_length=4096,widget=forms.Textarea,required=False, strip=False)
198198
other_designations = forms.CharField(label="Designations for other contributions", max_length=255,required=False)
199199
holder_contact_name = forms.CharField(label="Name", max_length=255)
200200
holder_contact_email = forms.EmailField(label="Email")

0 commit comments

Comments
 (0)