Hide QualityInfo on small screens

This commit is contained in:
Deluan
2021-04-07 16:10:31 -04:00
parent 48ae4f7479
commit 96a14ec484
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ const PlaylistSongs = ({ playlistId, readOnly, actions, ...props }) => {
{isDesktop && <AlbumLinkField source="album" />}
{isDesktop && <TextField source="artist" />}
<DurationField source="duration" className={classes.draggable} />
<QualityInfo source="quality" sortable={false} />
{isDesktop && <QualityInfo source="quality" sortable={false} />}
<SongContextMenu
onAddToPlaylist={onAddToPlaylist}
showLove={false}