diff --git a/src/main/twirl/gitbucket/core/issues/commentlist.scala.html b/src/main/twirl/gitbucket/core/issues/commentlist.scala.html index 9924932..f8390a2 100644 --- a/src/main/twirl/gitbucket/core/issues/commentlist.scala.html +++ b/src/main/twirl/gitbucket/core/issues/commentlist.scala.html @@ -6,7 +6,7 @@ @import gitbucket.core.view.helpers @import gitbucket.core.model.CommitComment @issueOrPullRequest()={ @if(issue.exists(_.isPullRequest))( "pull request" )else( "issue" ) } -@showFormatedComment(comment: gitbucket.core.model.IssueComment)={ +@showFormattedComment(comment: gitbucket.core.model.IssueComment)={
@helpers.avatar(comment.commentedUserName, 20) @@ -117,7 +117,7 @@
} case "merge" => { - @showFormatedComment(comment) + @showFormattedComment(comment)
@@ -136,7 +136,7 @@ } case "close" | "close_comment" => { @if(comment.action == "close_comment"){ - @showFormatedComment(comment) + @showFormattedComment(comment) }
@@ -150,7 +150,7 @@ } case "reopen" | "reopen_comment" => { @if(comment.action == "reopen_comment"){ - @showFormatedComment(comment) + @showFormattedComment(comment) }
@@ -229,7 +229,7 @@
} case _ => { - @showFormatedComment(comment) + @showFormattedComment(comment) } } }