Skip to content

Commit

Permalink
Increase length-limit on the notes field of the base IPR disclosure f…
Browse files Browse the repository at this point in the history
…orm. Fixes #3104. Commit ready for merge.

 - Legacy-Id: 18620
  • Loading branch information
rjsparks committed Oct 19, 2020
1 parent 8d226fa commit 02718dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/ipr/forms.py
Expand Up @@ -276,7 +276,7 @@ class IprDisclosureFormBase(forms.ModelForm):
patent_inventor = forms.CharField(max_length=63, required=True, validators=[ validate_name ], help_text="Inventor name")
patent_title = forms.CharField(max_length=255, required=True, validators=[ validate_title ], help_text="Title of invention")
patent_date = forms.DateField(required=True, help_text="Date granted or applied for")
patent_notes = forms.CharField(max_length=1024, required=False, widget=forms.Textarea)
patent_notes = forms.CharField(max_length=4096, required=False, widget=forms.Textarea)

def __init__(self,*args,**kwargs):
super(IprDisclosureFormBase, self).__init__(*args,**kwargs)
Expand Down

0 comments on commit 02718dc

Please sign in to comment.