Monorepo for Tangled
1{{ define "repo/issues/fragments/replyIssueCommentPlaceholder" }}
2 <div class="p-2 border-t flex gap-2 items-center border-gray-300 dark:border-gray-700">
3 {{ if .LoggedInUser }}
4 <img
5 src="{{ tinyAvatar .LoggedInUser.Did }}"
6 alt=""
7 class="rounded-full h-6 w-6 mr-1 border border-gray-300 dark:border-gray-700"
8 />
9 {{ end }}
10 <input
11 class="w-full py-2 border-none focus:outline-none"
12 placeholder="Leave a reply..."
13 hx-get="/{{ .RepoInfo.FullName }}/issues/{{ .Issue.IssueId }}/comment/{{ .Comment.Id }}/reply"
14 hx-trigger="focus"
15 hx-target="closest div"
16 hx-swap="outerHTML"
17 >
18 </input>
19 </div>
20{{ end }}