Skip to content

Commit 35d1621

Browse files
committed
feat: add person's name who requested song to Next Up view
- Include addedBy name in the minimal Next Up display - Show format: 'Artist • PersonName' on second line - Maintain small, unobtrusive design while showing who requested the song - Keep truncation for long names to prevent layout issues
1 parent 5f970b6 commit 35d1621

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/tv/NextUpSidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function NextUpSidebar({ queue, currentSong }: NextUpSidebarProps) {
2525
{nextSong.mediaItem.title}
2626
</div>
2727
<div className="text-gray-400 text-xs truncate">
28-
{nextSong.mediaItem.artist}
28+
{nextSong.mediaItem.artist}{nextSong.addedBy}
2929
</div>
3030
</div>
3131
</div>

0 commit comments

Comments
 (0)