From b9fbbdfee6d62716da9dcc70ae27e958886c3853 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jean-S=C3=A9bastien=20Caux?= <git@jscaux.org>
Date: Fri, 18 Nov 2022 16:29:16 +0100
Subject: [PATCH] Increase `max_length` of `title` field in
 `SubmissionPoolSearchForm`

---
 scipost_django/submissions/forms.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scipost_django/submissions/forms.py b/scipost_django/submissions/forms.py
index 8605dc2cc..ec346743d 100644
--- a/scipost_django/submissions/forms.py
+++ b/scipost_django/submissions/forms.py
@@ -197,7 +197,7 @@ class SubmissionPoolSearchForm(forms.Form):
         queryset=Proceedings.objects.order_by("-submissions_close"), required=False
     )
     author = forms.CharField(max_length=100, required=False, label="Author(s)")
-    title = forms.CharField(max_length=100, required=False)
+    title = forms.CharField(max_length=512, required=False)
     identifier = forms.CharField(max_length=128, required=False)
     status = forms.ChoiceField(
         choices=(
-- 
GitLab