|
|
|
@ -58,7 +58,10 @@ export const MatchPlaylists = forwardRef( |
|
|
|
<List ref={ref}> |
|
|
|
<List ref={ref}> |
|
|
|
{ |
|
|
|
{ |
|
|
|
map(playlists, (playlist) => ( |
|
|
|
map(playlists, (playlist) => ( |
|
|
|
<Item key={playlist.id} id={`match_watch_${playlist.id}`}> |
|
|
|
<Item |
|
|
|
|
|
|
|
key={playlist.id} |
|
|
|
|
|
|
|
id={`match_watch_${playlist.id}${live ? '_live' : ''}`} |
|
|
|
|
|
|
|
> |
|
|
|
<PlayButton |
|
|
|
<PlayButton |
|
|
|
duration={playlist.duration} |
|
|
|
duration={playlist.duration} |
|
|
|
active={isEqual(playlist, selectedMathPlaylist)} |
|
|
|
active={isEqual(playlist, selectedMathPlaylist)} |
|
|
|
|