From 36de0b3097d9f1e4da41bd3ac18a77a89770eb63 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Sun, 12 Nov 2023 22:58:18 +0900 Subject: [PATCH] Fix layout of branch selector (#3416) --- src/main/twirl/gitbucket/core/helper/branchcontrol.scala.html | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/twirl/gitbucket/core/helper/branchcontrol.scala.html b/src/main/twirl/gitbucket/core/helper/branchcontrol.scala.html index 3ab4b67a9..237a760cd 100644 --- a/src/main/twirl/gitbucket/core/helper/branchcontrol.scala.html +++ b/src/main/twirl/gitbucket/core/helper/branchcontrol.scala.html @@ -5,7 +5,6 @@ @gitbucket.core.helper.html.dropdown( value = if(branch.length == 40) branch.substring(0, 10) else branch, prefix = if(repository.branchList.contains(branch)) "branch" else if (repository.tags.map(_.name).contains(branch)) "tag" else "tree", - style = "min-width: 200px;", maxValueWidth = "200px" ) {