From c8e3af60727a00a55b6799347f4086b3c4af2b29 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Wed, 7 Apr 2021 12:49:58 +0900 Subject: [PATCH] Abolish the pull request title length limitation (#2731) --- .../gitbucket/core/controller/PullRequestsController.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/gitbucket/core/controller/PullRequestsController.scala b/src/main/scala/gitbucket/core/controller/PullRequestsController.scala index 96c67471f..28886022b 100644 --- a/src/main/scala/gitbucket/core/controller/PullRequestsController.scala +++ b/src/main/scala/gitbucket/core/controller/PullRequestsController.scala @@ -57,7 +57,7 @@ trait PullRequestsControllerBase extends ControllerBase { with PrioritiesService => val pullRequestForm = mapping( - "title" -> trim(label("Title", text(required, maxlength(100)))), + "title" -> trim(label("Title", text(required))), "content" -> trim(label("Content", optional(text()))), "targetUserName" -> trim(text(required, maxlength(100))), "targetBranch" -> trim(text(required, maxlength(100))),