[enhancement]: add codec column for tracks

This commit is contained in:
Kendall Garner 2024-02-19 20:34:36 -08:00
parent 9113c6cc2e
commit 860dd8b499
No known key found for this signature in database
GPG key ID: 18D2767419676C87
4 changed files with 16 additions and 0 deletions

View file

@ -60,6 +60,10 @@ export const SONG_TABLE_COLUMNS = [
label: i18n.t('table.config.label.bitrate', { postProcess: 'titleCase' }),
value: TableColumn.BIT_RATE,
},
{
label: i18n.t('table.config.label.codec', { postProcess: 'titleCase' }),
value: TableColumn.CODEC,
},
{
label: i18n.t('table.config.label.lastPlayed', { postProcess: 'titleCase' }),
value: TableColumn.LAST_PLAYED,