add bitDepth, sampleRate columns to table (#1205)

This commit is contained in:
jeffvli
2025-12-07 19:41:03 -08:00
parent bd8503b25d
commit 4f4300042b
6 changed files with 67 additions and 1 deletions
@@ -139,6 +139,15 @@ export const SONG_TABLE_COLUMNS: DefaultTableColumn[] = [
value: TableColumn.TRACK_NUMBER,
width: 100,
},
{
align: 'center',
autoSize: false,
isEnabled: false,
label: i18n.t('table.config.label.bitDepth', { postProcess: 'titleCase' }),
pinned: null,
value: TableColumn.BIT_DEPTH,
width: 100,
},
{
align: 'center',
autoSize: false,
@@ -157,6 +166,15 @@ export const SONG_TABLE_COLUMNS: DefaultTableColumn[] = [
value: TableColumn.CODEC,
width: 100,
},
{
align: 'center',
autoSize: false,
isEnabled: false,
label: i18n.t('table.config.label.sampleRate', { postProcess: 'titleCase' }),
pinned: null,
value: TableColumn.SAMPLE_RATE,
width: 100,
},
{
align: 'center',
autoSize: false,