Monorepo for Tangled
0

Configure Feed

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

appview/pages: apply scaleFmt to follower counts in follow cards

Signed-off-by: oppiliappan <me@oppi.li>

author
oppiliappan
date (Jul 22, 2026, 1:41 PM +0100) commit b4de22c9 parent 1bdbd4f9 change-id rrosvwnx
+2 -3
+2 -3
appview/pages/templates/user/fragments/followCard.html
··· 17 17 {{ end }} 18 18 <div class="text-sm flex items-center gap-2 my-2 overflow-hidden text-ellipsis whitespace-nowrap max-w-full"> 19 19 <span class="flex-shrink-0">{{ i "users" "size-4" }}</span> 20 - <span id="followers" data-followers-did="{{ .UserDid }}"><a href="/{{ $userIdent }}?tab=followers">{{ 21 - .FollowersCount }} followers</a></span> 20 + <span id="followers" data-followers-did="{{ .UserDid }}"><a href="/{{ $userIdent }}?tab=followers">{{ scaleFmt .FollowersCount }} followers</a></span> 22 21 <span class="select-none after:content-['·']"></span> 23 - <span id="following"><a href="/{{ $userIdent }}?tab=following">{{ .FollowingCount }} following</a></span> 22 + <span id="following"><a href="/{{ $userIdent }}?tab=following">{{ scaleFmt .FollowingCount }} following</a></span> 24 23 </div> 25 24 </div> 26 25 {{ if and .LoggedInUser (ne .FollowStatus.String "IsSelf") }}