Monorepo for Tangled tangled.org
2

Configure Feed

Select the types of activity you want to include in your feed.

appview/pages: remove unecessary div in commentList

Signed-off-by: oppiliappan <me@oppi.li>

author
oppiliappan
date (Jun 15, 2026, 10:03 AM +0100) commit a1d71ce5 parent b91743d4 change-id uzkyullr
+13 -15
+3 -5
appview/pages/templates/fragments/comment/commentList.html
··· 1 1 {{ define "fragments/comment/commentList" }} 2 - <div class="flex flex-col gap-4"> 3 - {{ range $item := .CommentList }} 4 - {{ template "commentListItem" (list $ .) }} 5 - {{ end }} 6 - </div> 2 + {{ range $item := .CommentList }} 3 + {{ template "commentListItem" (list $ .) }} 4 + {{ end }} 7 5 {{ end }} 8 6 9 7 {{ define "commentListItem" }}
+10 -10
appview/pages/templates/repo/issues/issue.html
··· 114 114 115 115 {{ define "repoAfter" }} 116 116 <div class="flex flex-col gap-4 mt-4"> 117 - {{ 118 - template "fragments/comment/commentList" 119 - (dict 120 - "LoggedInUser" $.LoggedInUser 121 - "Reactions" $.Reactions 122 - "UserReacted" $.UserReacted 123 - "VouchRelationships" $.VouchRelationships 124 - "CommentList" $.CommentList) 125 - }} 117 + {{ 118 + template "fragments/comment/commentList" 119 + (dict 120 + "LoggedInUser" $.LoggedInUser 121 + "Reactions" $.Reactions 122 + "UserReacted" $.UserReacted 123 + "VouchRelationships" $.VouchRelationships 124 + "CommentList" $.CommentList) 125 + }} 126 126 127 - {{ template "repo/issues/fragments/newComment" . }} 127 + {{ template "repo/issues/fragments/newComment" . }} 128 128 </div> 129 129 {{ end }}