1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-02-25 15:22:42 +00:00

Fixed: Page header search box uses incorrect artist link

This commit is contained in:
Qstick 2018-01-18 21:09:34 -05:00
parent 960330a004
commit 9374461d97
2 changed files with 3 additions and 3 deletions

View file

@ -78,7 +78,7 @@ class ArtistSearchInput extends Component {
goToArtist(artist) {
this.setState({ value: '' });
this.props.onGoToArtist(artist.nameSlug);
this.props.onGoToArtist(artist.foreignArtistId);
}
reset() {

View file

@ -18,8 +18,8 @@ function createMapStateToProps() {
function createMapDispatchToProps(dispatch, props) {
return {
onGoToArtist(nameSlug) {
dispatch(push(`${window.Sonarr.urlBase}/artist/${nameSlug}`));
onGoToArtist(foreignArtistId) {
dispatch(push(`${window.Sonarr.urlBase}/artist/${foreignArtistId}`));
},
onGoToAddNewArtist(query) {