mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-07 13:32:17 -07:00
Fixed: Minor UI fixes
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
d3ee856403
commit
8256314ba8
3 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue