mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
Fixed: Minor UI fixes
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
@@ -73,8 +73,8 @@ class TrackFileEditorModalContent extends Component {
|
||||
return selectedIds.reduce((acc, id) => {
|
||||
const matchingItem = this.props.items.find((item) => item.id === id);
|
||||
|
||||
if (matchingItem && !acc.includes(matchingItem.trackFileID)) {
|
||||
acc.push(matchingItem.trackFileID);
|
||||
if (matchingItem && !acc.includes(matchingItem.trackFileId)) {
|
||||
acc.push(matchingItem.trackFileId);
|
||||
}
|
||||
|
||||
return acc;
|
||||
|
||||
Reference in New Issue
Block a user