diff --git a/ui/src/song/SongList.js b/ui/src/song/SongList.js index e4ee3f85e..ff55c4a5a 100644 --- a/ui/src/song/SongList.js +++ b/ui/src/song/SongList.js @@ -49,6 +49,11 @@ const SongList = (props) => { const dispatch = useDispatch() const isXsmall = useMediaQuery((theme) => theme.breakpoints.down('xs')) const isDesktop = useMediaQuery((theme) => theme.breakpoints.up('md')) + + const handleRowClick = (id, basePath, record) => { + dispatch(setTrack(record)) + } + return ( <> { ) : ( } - rowClick={(id, basePath, record) => dispatch(setTrack(record))} + rowClick={handleRowClick} contextAlwaysVisible={!isDesktop} >