+2
-1
appview/pages/templates/repo/commit.html
+2
-1
appview/pages/templates/repo/commit.html
···
58
<div class="mb-1">This commit was signed with the committer's <span class="text-green-600 font-semibold">known signature</span>.</div>
59
<div class="flex items-center gap-2 my-2">
60
{{ i "user" "w-4 h-4" }}
61
-
<a href="/{{ $didOrHandle }}">{{ $didOrHandle }}</a>
62
</div>
63
<div class="my-1 pt-2 text-xs border-t">
64
<div class="text-gray-600 dark:text-gray-300">SSH Key Fingerprint:</div>
···
58
<div class="mb-1">This commit was signed with the committer's <span class="text-green-600 font-semibold">known signature</span>.</div>
59
<div class="flex items-center gap-2 my-2">
60
{{ i "user" "w-4 h-4" }}
61
+
{{ $committerDidOrHandle := index $.EmailToDidOrHandle $commit.Committer.Email }}
62
+
<a href="/{{ $committerDidOrHandle }}">{{ $committerDidOrHandle }}</a>
63
</div>
64
<div class="my-1 pt-2 text-xs border-t">
65
<div class="text-gray-600 dark:text-gray-300">SSH Key Fingerprint:</div>
+1
-1
appview/repo/repo.go
+1
-1
appview/repo/repo.go