add Title (artist) column (#1496)

This commit is contained in:
jeffvli
2026-01-17 01:49:59 -08:00
parent d1aed5007f
commit 18d56f32cf
8 changed files with 345 additions and 4 deletions
@@ -49,6 +49,15 @@ export const SONG_TABLE_COLUMNS: DefaultTableColumn[] = [
value: TableColumn.TITLE_COMBINED,
width: 300,
},
{
align: 'start',
autoSize: false,
isEnabled: false,
label: i18n.t('table.config.label.titleArtist', { postProcess: 'titleCase' }),
pinned: null,
value: TableColumn.TITLE_ARTIST,
width: 300,
},
{
align: 'center',
autoSize: false,
@@ -315,6 +324,15 @@ export const ALBUM_TABLE_COLUMNS: DefaultTableColumn[] = [
value: TableColumn.TITLE_COMBINED,
width: 300,
},
{
align: 'start',
autoSize: false,
isEnabled: false,
label: i18n.t('table.config.label.titleArtist', { postProcess: 'titleCase' }),
pinned: null,
value: TableColumn.TITLE_ARTIST,
width: 300,
},
{
align: 'center',
autoSize: false,