diff --git a/appview/pages/templates/fragments/comment/commentList.html b/appview/pages/templates/fragments/comment/commentList.html index ca1f5cba..d10715e7 100644 --- a/appview/pages/templates/fragments/comment/commentList.html +++ b/appview/pages/templates/fragments/comment/commentList.html @@ -1,9 +1,7 @@ {{ define "fragments/comment/commentList" }} -
- {{ range $item := .CommentList }} - {{ template "commentListItem" (list $ .) }} - {{ end }} -
+ {{ range $item := .CommentList }} + {{ template "commentListItem" (list $ .) }} + {{ end }} {{ end }} {{ define "commentListItem" }} diff --git a/appview/pages/templates/repo/issues/issue.html b/appview/pages/templates/repo/issues/issue.html index 12039bf6..67d8c2c7 100644 --- a/appview/pages/templates/repo/issues/issue.html +++ b/appview/pages/templates/repo/issues/issue.html @@ -114,16 +114,16 @@ {{ define "repoAfter" }}
- {{ - template "fragments/comment/commentList" - (dict - "LoggedInUser" $.LoggedInUser - "Reactions" $.Reactions - "UserReacted" $.UserReacted - "VouchRelationships" $.VouchRelationships - "CommentList" $.CommentList) - }} + {{ + template "fragments/comment/commentList" + (dict + "LoggedInUser" $.LoggedInUser + "Reactions" $.Reactions + "UserReacted" $.UserReacted + "VouchRelationships" $.VouchRelationships + "CommentList" $.CommentList) + }} - {{ template "repo/issues/fragments/newComment" . }} + {{ template "repo/issues/fragments/newComment" . }}
{{ end }}