mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-14 11:17:19 +03:00
Always show song context menu on tablets
This commit is contained in:
parent
7170485d08
commit
26dba27778
@ -131,7 +131,7 @@ const AlbumSongs = (props) => {
|
||||
{...controllerProps}
|
||||
hasBulkActions={hasBulkActions}
|
||||
multiDisc={multiDisc}
|
||||
contextAlwaysVisible={isXsmall}
|
||||
contextAlwaysVisible={!isDesktop}
|
||||
>
|
||||
{isDesktop && (
|
||||
<TextField
|
||||
|
@ -76,6 +76,7 @@ const SongList = (props) => {
|
||||
<SongDatagrid
|
||||
expand={<SongDetails />}
|
||||
rowClick={(id, basePath, record) => dispatch(setTrack(record))}
|
||||
contextAlwaysVisible={!isDesktop}
|
||||
>
|
||||
<TextField source="title" />
|
||||
{isDesktop && <AlbumLinkField source="album" />}
|
||||
@ -86,20 +87,16 @@ const SongList = (props) => {
|
||||
<FunctionField source="year" render={(r) => r.year || ''} />
|
||||
)}
|
||||
<DurationField source="duration" />
|
||||
{isDesktop ? (
|
||||
<SongContextMenu
|
||||
source={'starred'}
|
||||
label={
|
||||
<StarBorderIcon
|
||||
fontSize={'small'}
|
||||
className={classes.columnIcon}
|
||||
/>
|
||||
}
|
||||
sortBy={'starred DESC, starredAt DESC'}
|
||||
/>
|
||||
) : (
|
||||
<SongContextMenu showStar={false} />
|
||||
)}
|
||||
<SongContextMenu
|
||||
source={'starred'}
|
||||
sortBy={'starred DESC, starredAt DESC'}
|
||||
label={
|
||||
<StarBorderIcon
|
||||
fontSize={'small'}
|
||||
className={classes.columnIcon}
|
||||
/>
|
||||
}
|
||||
/>
|
||||
</SongDatagrid>
|
||||
)}
|
||||
</List>
|
||||
|
Loading…
x
Reference in New Issue
Block a user