diff --git a/ui/src/common/SongInfo.jsx b/ui/src/common/SongInfo.jsx
index 5adc1ebf0..77e91b653 100644
--- a/ui/src/common/SongInfo.jsx
+++ b/ui/src/common/SongInfo.jsx
@@ -75,6 +75,7 @@ export const SongInfo = (props) => {
compilation: ,
bitRate: ,
bitDepth: ,
+ sampleRate: ,
channels: ,
size: ,
updatedAt: ,
@@ -92,7 +93,14 @@ export const SongInfo = (props) => {
roles.push([name, record.participants[name].length])
}
- const optionalFields = ['discSubtitle', 'comment', 'bpm', 'genre', 'bitDepth']
+ const optionalFields = [
+ 'discSubtitle',
+ 'comment',
+ 'bpm',
+ 'genre',
+ 'bitDepth',
+ 'sampleRate',
+ ]
optionalFields.forEach((field) => {
!record[field] && delete data[field]
})
diff --git a/ui/src/i18n/en.json b/ui/src/i18n/en.json
index 4183d0ccd..76c4d5190 100644
--- a/ui/src/i18n/en.json
+++ b/ui/src/i18n/en.json
@@ -19,6 +19,7 @@
"updatedAt": "Updated at",
"bitRate": "Bit rate",
"bitDepth": "Bit depth",
+ "sampleRate": "Sample rate",
"channels": "Channels",
"discSubtitle": "Disc Subtitle",
"starred": "Favourite",