fix(ui): refine playlist details layout and disable play date display for mobile
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
90b095b409
commit
175964b17a
2 changed files with 3 additions and 2 deletions
|
|
@ -76,7 +76,6 @@ const useStyles = makeStyles(
|
|||
stats: {
|
||||
marginTop: '1em',
|
||||
marginBottom: '0.5em',
|
||||
display: 'inline-block',
|
||||
},
|
||||
}),
|
||||
{
|
||||
|
|
|
|||
|
|
@ -149,7 +149,9 @@ const PlaylistSongs = ({ playlistId, readOnly, actions, ...props }) => {
|
|||
playCount: isDesktop && (
|
||||
<NumberField source="playCount" sortByOrder={'DESC'} />
|
||||
),
|
||||
playDate: <DateField source="playDate" sortByOrder={'DESC'} showTime />,
|
||||
playDate: isDesktop && (
|
||||
<DateField source="playDate" sortByOrder={'DESC'} showTime />
|
||||
),
|
||||
quality: isDesktop && <QualityInfo source="quality" sortable={false} />,
|
||||
channels: isDesktop && <NumberField source="channels" />,
|
||||
bpm: isDesktop && <NumberField source="bpm" />,
|
||||
|
|
|
|||
Loading…
Reference in a new issue