A vibe coded tangled fork which supports pijul.
at 4440f70f06c4600a8e81ca0455baf8da00fa2a12 20 lines 721 B view raw
1{{ define "repo/issues/fragments/replyIssueCommentPlaceholder" }} 2 <div class="py-2 px-6 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 size-8 mr-1 border-2 border-gray-300 dark:border-gray-700" 8 /> 9 {{ end }} 10 <input 11 class="w-full p-0 border-none focus:outline-none bg-transparent" 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 }}