Add Size column to Album Songs view

This commit is contained in:
Deluan 2023-01-16 15:13:05 -05:00
parent 7682fddec0
commit 13ba08157a

View file

@ -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 (