mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-05 23:27:21 +01:00
Shorten MBID for release and surround in brackets.
This commit is contained in:
parent
b1b943d3a1
commit
3ac47f83ec
2 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ function createMapStateToProps() {
|
|||
`, ${mediumCount} med, ${trackCount} tracks` +
|
||||
`${country && country.length > 0 ? `, ${shortenList(country)}` : ''}` +
|
||||
`${format ? `, [${format}]` : ''}` +
|
||||
`, ${foreignReleaseId.toString()}`
|
||||
`, [...${foreignReleaseId.toString().slice(-4)}]`
|
||||
};
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in a new issue