feat(frontend): show Rekordbox path in SongDetails for selected song

This commit is contained in:
Geert Rademakes 2025-08-08 10:52:38 +02:00
parent 9c8bf11986
commit fe282bf34f

View File

@ -37,6 +37,7 @@ export const SongDetails: React.FC<SongDetailsProps> = memo(({ song }) => {
{ label: "Title", value: song.title }, { label: "Title", value: song.title },
{ label: "Artist", value: song.artist }, { label: "Artist", value: song.artist },
{ label: "Duration", value: formatDuration(song.totalTime || '') }, { label: "Duration", value: formatDuration(song.totalTime || '') },
{ label: "Rekordbox Path", value: song.location },
{ label: "Album", value: song.album }, { label: "Album", value: song.album },
{ label: "Genre", value: song.genre }, { label: "Genre", value: song.genre },
{ label: "BPM", value: song.averageBpm }, { label: "BPM", value: song.averageBpm },