audio streaming app plyr.fm
38
fork

Configure Feed

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

fix: prefix liker stack with "liked by" label (#1306)

Without a label the avatars looked like they belonged to the song
itself (artist, featured collaborators) rather than the people who
liked it. Adds a "liked by" label inside LikersStrip so the meaning
is unambiguous everywhere the strip appears — TrackItem, TrackCard,
and the track detail page.

Co-authored-by: Claude Opus 4 (1M context) <noreply@anthropic.com>

authored by

nate nowack
Claude Opus 4 (1M context)
and committed by
GitHub
ed7a9487 46d71fd4

+9 -1
+9 -1
frontend/src/lib/components/LikersStrip.svelte
··· 123 123 onclick={(e) => e.stopPropagation()} 124 124 onkeydown={(e) => e.stopPropagation()} 125 125 > 126 + <span class="label">liked by</span> 126 127 <AvatarStack 127 128 users={usersForStack} 128 129 total={likeCount} ··· 160 161 .likers-strip { 161 162 display: inline-flex; 162 163 align-items: center; 163 - gap: 0.25rem; 164 + gap: 0.375rem; 164 165 vertical-align: middle; 165 166 transition: opacity 0.15s; 166 167 } 167 168 168 169 .likers-strip.loading { 169 170 opacity: 0.6; 171 + } 172 + 173 + .label { 174 + color: var(--text-tertiary); 175 + font-size: inherit; 176 + font-family: inherit; 177 + white-space: nowrap; 170 178 } 171 179 172 180 .collapse {