diff --git a/frontend/src/Components/Form/AlbumReleaseSelectInputConnector.js b/frontend/src/Components/Form/AlbumReleaseSelectInputConnector.js index 5cdd57545..fa8957213 100644 --- a/frontend/src/Components/Form/AlbumReleaseSelectInputConnector.js +++ b/frontend/src/Components/Form/AlbumReleaseSelectInputConnector.js @@ -30,7 +30,7 @@ function createMapStateToProps() { `, ${mediumCount} med, ${trackCount} tracks` + `${country && country.length > 0 ? `, ${shortenList(country)}` : ''}` + `${format ? `, [${format}]` : ''}` + - `, ${foreignReleaseId.toString()}` + `, [...${foreignReleaseId.toString().slice(-4)}]` }; }); diff --git a/frontend/src/InteractiveImport/AlbumRelease/SelectAlbumReleaseRow.js b/frontend/src/InteractiveImport/AlbumRelease/SelectAlbumReleaseRow.js index e737145f5..b18c09ddd 100644 --- a/frontend/src/InteractiveImport/AlbumRelease/SelectAlbumReleaseRow.js +++ b/frontend/src/InteractiveImport/AlbumRelease/SelectAlbumReleaseRow.js @@ -65,7 +65,7 @@ class SelectAlbumReleaseRow extends Component { `${r.country.length > 0 ? ', ' : ''}${shortenList(r.country)}` + `${r.format ? ', [' : ''}${r.format}${r.format ? ']' : ''}` + `${r.monitored ? ', Monitored' : ''}` + - `, ${r.id.toString()}` + `, [...${r.id.toString().slice(-4)}]` }))} value={matchedReleaseId} onChange={this.onInputChange}