mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-15 02:22:36 +02:00
Fix repeat word in comment
This commit is contained in:
@ -127,7 +127,7 @@ class EditTicketForm(CustomFieldMixin, forms.ModelForm):
|
|||||||
"""
|
"""
|
||||||
super(EditTicketForm, self).__init__(*args, **kwargs)
|
super(EditTicketForm, self).__init__(*args, **kwargs)
|
||||||
|
|
||||||
# Since title is max 100 characters limit it in in editing
|
# Since title is max 100 characters limit it in editing
|
||||||
if "title" in self.fields:
|
if "title" in self.fields:
|
||||||
self.fields["title"].max_length = 100
|
self.fields["title"].max_length = 100
|
||||||
self.fields["title"].widget.attrs["maxlength"] = 100
|
self.fields["title"].widget.attrs["maxlength"] = 100
|
||||||
|
Reference in New Issue
Block a user