Bump to Twirl 1.4.1 (#2320)
1 parent 841e6d1 commit 71248cd9b7b0868d32af2d2fb04119d115346830
@Naoki Takezoe Naoki Takezoe authored on 2 Jun 2019
GitHub committed on 2 Jun 2019
Showing 5 changed files
View
2
■■■
project/plugins.sbt
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")
 
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.5.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.3.15")
addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.4.1")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9")
addSbtPlugin("org.scalatra.sbt" % "sbt-scalatra" % "1.0.3")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-license-report" % "1.2.0")
View
4
src/main/twirl/gitbucket/core/dashboard/issueslist.scala.html
</th>
</tr>
</thead>
<tbody>
@issues.map { case IssueInfo(issue, labels, milestone, priority, commentCount, commitStatus) =>
@issues.map { case IssueInfo(issue, labels, milestone, priority, commentCount, commitStatus) => {
<tr>
<td style="padding-top: 12px; padding-bottom: 12px;">
<a href="@context.path/@issue.userName/@issue.repositoryName">@issue.userName/@issue.repositoryName</a>&nbsp;&#xFF65;
@if(issue.isPullRequest){
}
</div>
</td>
</tr>
}
}}
@if(issues.isEmpty){
<tr>
<td style="padding: 20px; background-color: #eee; text-align: center;">
No results matched your search.
View
src/main/twirl/gitbucket/core/issues/commentlist.scala.html
View
src/main/twirl/gitbucket/core/issues/issueinfo.scala.html
View
src/main/twirl/gitbucket/core/issues/listparts.scala.html