add composer column to song/album table (#1559)

This commit is contained in:
jeffvli
2026-01-17 02:16:56 -08:00
parent aec2f85165
commit ac944c43bb
7 changed files with 136 additions and 1 deletions
@@ -94,6 +94,15 @@ export const SONG_TABLE_COLUMNS: DefaultTableColumn[] = [
value: TableColumn.ARTIST,
width: 300,
},
{
align: 'start',
autoSize: false,
isEnabled: false,
label: i18n.t('table.config.label.composer', { postProcess: 'titleCase' }),
pinned: null,
value: TableColumn.COMPOSER,
width: 300,
},
{
align: 'start',
autoSize: false,
@@ -360,6 +369,15 @@ export const ALBUM_TABLE_COLUMNS: DefaultTableColumn[] = [
value: TableColumn.ARTIST,
width: 300,
},
{
align: 'start',
autoSize: false,
isEnabled: false,
label: i18n.t('table.config.label.composer', { postProcess: 'titleCase' }),
pinned: null,
value: TableColumn.COMPOSER,
width: 300,
},
{
align: 'center',
autoSize: false,