mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +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,
|
useSelectedFields,
|
||||||
useResourceRefresh,
|
useResourceRefresh,
|
||||||
DateField,
|
DateField,
|
||||||
|
SizeField,
|
||||||
} from '../common'
|
} from '../common'
|
||||||
import { AddToPlaylistDialog } from '../dialogs'
|
import { AddToPlaylistDialog } from '../dialogs'
|
||||||
import config from '../config'
|
import config from '../config'
|
||||||
|
@ -125,6 +126,7 @@ const AlbumSongs = (props) => {
|
||||||
),
|
),
|
||||||
playDate: <DateField source="playDate" sortable={false} showTime />,
|
playDate: <DateField source="playDate" sortable={false} showTime />,
|
||||||
quality: isDesktop && <QualityInfo source="quality" sortable={false} />,
|
quality: isDesktop && <QualityInfo source="quality" sortable={false} />,
|
||||||
|
size: isDesktop && <SizeField source="size" sortable={false} />,
|
||||||
channels: isDesktop && <NumberField source="channels" sortable={false} />,
|
channels: isDesktop && <NumberField source="channels" sortable={false} />,
|
||||||
bpm: isDesktop && <NumberField source="bpm" sortable={false} />,
|
bpm: isDesktop && <NumberField source="bpm" sortable={false} />,
|
||||||
rating: isDesktop && config.enableStarRating && (
|
rating: isDesktop && config.enableStarRating && (
|
||||||
|
@ -142,7 +144,7 @@ const AlbumSongs = (props) => {
|
||||||
resource: 'albumSong',
|
resource: 'albumSong',
|
||||||
columns: toggleableFields,
|
columns: toggleableFields,
|
||||||
omittedColumns: ['title'],
|
omittedColumns: ['title'],
|
||||||
defaultOff: ['channels', 'bpm', 'year', 'playCount', 'playDate'],
|
defaultOff: ['channels', 'bpm', 'year', 'playCount', 'playDate', 'size'],
|
||||||
})
|
})
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue