Monorepo for Tangled tangled.org

appview/pages: make comment buttons show "hand" cursor

Signed-off-by: iacore <noreply+gpg-stub@1a-insec.net>

+3 -3
+1 -1
appview/pages/templates/repo/fragments/labelSectionHeader.html
··· 4 {{ template "repo/fragments/labelSectionHeaderText" .Name }} 5 {{ if (or .RepoInfo.Roles.IsOwner .RepoInfo.Roles.IsCollaborator) }} 6 <a 7 - class="text-gray-500 dark:text-gray-400 flex gap-1 items-center group" 8 hx-get="/{{ .RepoInfo.FullName }}/label/edit" 9 hx-vals='{"subject": "{{.Subject}}"}' 10 hx-swap="outerHTML"
··· 4 {{ template "repo/fragments/labelSectionHeaderText" .Name }} 5 {{ if (or .RepoInfo.Roles.IsOwner .RepoInfo.Roles.IsCollaborator) }} 6 <a 7 + class="text-gray-500 dark:text-gray-400 flex gap-1 items-center group cursor-pointer" 8 hx-get="/{{ .RepoInfo.FullName }}/label/edit" 9 hx-vals='{"subject": "{{.Subject}}"}' 10 hx-swap="outerHTML"
+2 -2
appview/pages/templates/repo/issues/fragments/issueCommentActions.html
··· 10 11 {{ define "edit" }} 12 <a 13 - class="text-gray-500 dark:text-gray-400 flex gap-1 items-center group" 14 hx-get="/{{ .RepoInfo.FullName }}/issues/{{ .Issue.IssueId }}/comment/{{ .Comment.Id }}/edit" 15 hx-swap="outerHTML" 16 hx-target="#comment-body-{{.Comment.Id}}"> ··· 21 22 {{ define "delete" }} 23 <a 24 - class="text-gray-500 dark:text-gray-400 flex gap-1 items-center group" 25 hx-delete="/{{ .RepoInfo.FullName }}/issues/{{ .Issue.IssueId }}/comment/{{ .Comment.Id }}/" 26 hx-confirm="Are you sure you want to delete your comment?" 27 hx-swap="outerHTML"
··· 10 11 {{ define "edit" }} 12 <a 13 + class="text-gray-500 dark:text-gray-400 flex gap-1 items-center group cursor-pointer" 14 hx-get="/{{ .RepoInfo.FullName }}/issues/{{ .Issue.IssueId }}/comment/{{ .Comment.Id }}/edit" 15 hx-swap="outerHTML" 16 hx-target="#comment-body-{{.Comment.Id}}"> ··· 21 22 {{ define "delete" }} 23 <a 24 + class="text-gray-500 dark:text-gray-400 flex gap-1 items-center group cursor-pointer" 25 hx-delete="/{{ .RepoInfo.FullName }}/issues/{{ .Issue.IssueId }}/comment/{{ .Comment.Id }}/" 26 hx-confirm="Are you sure you want to delete your comment?" 27 hx-swap="outerHTML"