Monorepo for Tangled
0

Configure Feed

Select the types of activity you want to include in your feed.

appview/pages: fix missing space in commit attribution

anonymous text nodes don't receive gap from the parent flex container;
wrapping "authored by" and "and committed by" in explicit span elements
fixes the missing space between user link and label text

Signed-off-by: eti <eti@eti.tf>

authored by

eti and committed by
Tangled
(Jun 12, 2026, 1:37 PM +0300) ff6d47cf b2472281

+3 -3
+3 -3
appview/pages/templates/repo/commit.html
··· 88 88 {{ end }} 89 89 90 90 {{ if $showCommitter }} 91 - authored by {{ template "attributedUser" (list $commit.Author.Email $commit.Author.Name $.EmailToDid) }} 92 - {{ range $commit.CoAuthors }} 91 + <span>authored by</span> {{ template "attributedUser" (list $commit.Author.Email $commit.Author.Name $.EmailToDid) }} 92 + {{ range $commit.CoAuthors }} 93 93 {{ template "attributedUser" (list .Email .Name $.EmailToDid) }} 94 94 {{ end }} 95 - and committed by {{ template "attributedUser" (list $commit.Committer.Email $commit.Committer.Name $.EmailToDid) }} 95 + <span>and committed by</span> {{ template "attributedUser" (list $commit.Committer.Email $commit.Committer.Name $.EmailToDid) }} 96 96 {{ else }} 97 97 {{ template "attributedUser" (list $commit.Author.Email $commit.Author.Name $.EmailToDid )}} 98 98 {{ end }}