From ff6d47cfb9835701f017feeb66357b52e5f19f1b Mon Sep 17 00:00:00 2001 From: eti Date: Fri, 12 Jun 2026 12:08:29 +0200 Subject: [PATCH] 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 --- appview/pages/templates/repo/commit.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appview/pages/templates/repo/commit.html b/appview/pages/templates/repo/commit.html index 2b5fd98e..25eb4167 100644 --- a/appview/pages/templates/repo/commit.html +++ b/appview/pages/templates/repo/commit.html @@ -88,11 +88,11 @@ {{ end }} {{ if $showCommitter }} - authored by {{ template "attributedUser" (list $commit.Author.Email $commit.Author.Name $.EmailToDid) }} - {{ range $commit.CoAuthors }} + authored by {{ template "attributedUser" (list $commit.Author.Email $commit.Author.Name $.EmailToDid) }} + {{ range $commit.CoAuthors }} {{ template "attributedUser" (list .Email .Name $.EmailToDid) }} {{ end }} - and committed by {{ template "attributedUser" (list $commit.Committer.Email $commit.Committer.Name $.EmailToDid) }} + and committed by {{ template "attributedUser" (list $commit.Committer.Email $commit.Committer.Name $.EmailToDid) }} {{ else }} {{ template "attributedUser" (list $commit.Author.Email $commit.Author.Name $.EmailToDid )}} {{ end }} -- 2.51.2