This repository has no description
649 B
18 lines
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 <img
4 src="{{ tinyAvatar .LoggedInUser.Did }}"
5 alt=""
6 class="rounded-full h-6 w-6 mr-1 border border-gray-300 dark:border-gray-700"
7 />
8 <input
9 class="w-full py-2 border-none focus:outline-none"
10 placeholder="Leave a reply..."
11 hx-get="/{{ .RepoInfo.FullName }}/issues/{{ .Issue.IssueId }}/comment/{{ .Comment.Id }}/reply"
12 hx-trigger="focus"
13 hx-target="closest div"
14 hx-swap="outerHTML"
15 >
16 </input>
17 </div>
18{{ end }}