mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add Size column to Album Songs view
This commit is contained in:
parent
7682fddec0
commit
13ba08157a
1 changed files with 3 additions and 1 deletions
|
@ -26,6 +26,7 @@ import {
|
|||
useSelectedFields,
|
||||
useResourceRefresh,
|
||||
DateField,
|
||||
SizeField,
|
||||
} from '../common'
|
||||
import { AddToPlaylistDialog } from '../dialogs'
|
||||
import config from '../config'
|
||||
|
@ -125,6 +126,7 @@ const AlbumSongs = (props) => {
|
|||
),
|
||||
playDate: <DateField source="playDate" sortable={false} showTime />,
|
||||
quality: isDesktop && <QualityInfo source="quality" sortable={false} />,
|
||||
size: isDesktop && <SizeField source="size" sortable={false} />,
|
||||
channels: isDesktop && <NumberField source="channels" sortable={false} />,
|
||||
bpm: isDesktop && <NumberField source="bpm" sortable={false} />,
|
||||
rating: isDesktop && config.enableStarRating && (
|
||||
|
@ -142,7 +144,7 @@ const AlbumSongs = (props) => {
|
|||
resource: 'albumSong',
|
||||
columns: toggleableFields,
|
||||
omittedColumns: ['title'],
|
||||
defaultOff: ['channels', 'bpm', 'year', 'playCount', 'playDate'],
|
||||
defaultOff: ['channels', 'bpm', 'year', 'playCount', 'playDate', 'size'],
|
||||
})
|
||||
|
||||
return (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue