Skip to content

Commit 534b889

Browse files
committed
The IPR disclosure form field for statement is too small to hold some of the existing statements. Incresed from 255 to 2000.
- Legacy-Id: 14637
1 parent 4f4e26a commit 534b889

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
@@ -153,7 +153,7 @@ class GenericDisclosureForm(forms.Form):
153153
patent_notes = forms.CharField(max_length=127, required=False, widget=forms.Textarea)
154154

155155
has_patent_pending = forms.BooleanField(required=False)
156-
statement = forms.CharField(max_length=255,widget=forms.Textarea,required=False, strip=False)
156+
statement = forms.CharField(max_length=2000,widget=forms.Textarea,required=False, strip=False)
157157
updates = SearchableIprDisclosuresField(required=False, help_text="If this disclosure <strong>updates</strong> other disclosures identify here which ones. Leave this field blank if this disclosure does not update any prior disclosures. <strong>Note</strong>: Updates to IPR disclosures must only be made by authorized representatives of the original submitters. Updates will automatically be forwarded to the current Patent Holder's Contact and to the Submitter of the original IPR disclosure.")
158158
same_as_ii_above = forms.BooleanField(label="Same as in section II above", required=False)
159159

0 commit comments

Comments
 (0)