style(highlight btn): change highlight btn id for live mathces

pull/174/head
Andrei Dekterev 3 years ago
parent 1081406926
commit 370c165905
  1. 5
      src/features/MatchSidePlaylists/components/MatchPlaylists/index.tsx

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

Loading…
Cancel
Save