mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Add file path to toggleable columns in SongList view. Fix #1719
This commit is contained in:
parent
5773fa0349
commit
9667f3cd48
1 changed files with 2 additions and 0 deletions
|
@ -137,6 +137,7 @@ const SongList = (props) => {
|
||||||
bpm: isDesktop && <NumberField source="bpm" />,
|
bpm: isDesktop && <NumberField source="bpm" />,
|
||||||
genre: <TextField source="genre" />,
|
genre: <TextField source="genre" />,
|
||||||
comment: <TextField source="comment" />,
|
comment: <TextField source="comment" />,
|
||||||
|
path: <TextField source="path" />,
|
||||||
createdAt: <DateField source="createdAt" showTime />,
|
createdAt: <DateField source="createdAt" showTime />,
|
||||||
}
|
}
|
||||||
}, [isDesktop, classes.ratingField])
|
}, [isDesktop, classes.ratingField])
|
||||||
|
@ -151,6 +152,7 @@ const SongList = (props) => {
|
||||||
'albumArtist',
|
'albumArtist',
|
||||||
'genre',
|
'genre',
|
||||||
'comment',
|
'comment',
|
||||||
|
'path',
|
||||||
'createdAt',
|
'createdAt',
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue