Fix context menu on mobile, removed console warnings

This commit is contained in:
Deluan
2020-05-29 22:50:33 -04:00
parent a7640c9df4
commit fbedbb7893
4 changed files with 14 additions and 10 deletions
+1 -1
View File
@@ -117,7 +117,7 @@ const AlbumSongs = (props) => {
/>
) : (
<SongDatagrid
expand={!isXsmall && <SongDetails />}
expand={isXsmall ? null : <SongDetails />}
rowClick={(id) => dispatch(playTracks(data, ids, id))}
{...controllerProps}
hasBulkActions={hasBulkActions}