make track title in bottom panel link to Now Playing page

This commit is contained in:
Drew Weymouth
2023-04-30 10:17:34 -07:00
parent 78194165f4
commit 053474f669
8 changed files with 44 additions and 14 deletions
+2 -2
View File
@@ -61,6 +61,6 @@ func ArtistsRoute() Route {
return Route{Page: Artists}
}
func NowPlayingRoute() Route {
return Route{Page: NowPlaying}
func NowPlayingRoute(highlightedTrackID string) Route {
return Route{Page: NowPlaying, Arg: highlightedTrackID}
}