follow up on #2367: rel="nofollow" on in-list labels

The forgejo/forgejo#2367 pull requests added rel="nofollow" on filters in the
menu, this commit adds it on the labels in the listing and a few other places.
This commit is contained in:
Chl 2024-08-15 21:28:49 +02:00
parent 44002a6399
commit 3fab07e0bc
No known key found for this signature in database
GPG key ID: 80012B734F21B934
3 changed files with 3 additions and 2 deletions

View file

@ -245,7 +245,7 @@ func RenderLabels(ctx context.Context, locale translation.Locale, labels []*issu
if isPull {
issuesOrPull = "pulls"
}
htmlCode += fmt.Sprintf("<a href='%s/%s?labels=%d'>%s</a> ",
htmlCode += fmt.Sprintf("<a href='%s/%s?labels=%d' rel='nofollow'>%s</a> ",
repoLink, issuesOrPull, label.ID, RenderLabel(ctx, locale, label))
}
htmlCode += "</span>"