mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
More UI Cleanup
This commit is contained in:
@@ -8,9 +8,9 @@ import ArtistSearchInput from './ArtistSearchInput';
|
||||
function createMapStateToProps() {
|
||||
return createSelector(
|
||||
createAllArtistSelector(),
|
||||
(series) => {
|
||||
(artist) => {
|
||||
return {
|
||||
series: _.sortBy(series, 'sortName')
|
||||
artist: _.sortBy(artist, 'sortName')
|
||||
};
|
||||
}
|
||||
);
|
||||
@@ -18,7 +18,7 @@ function createMapStateToProps() {
|
||||
|
||||
function createMapDispatchToProps(dispatch, props) {
|
||||
return {
|
||||
onGoToSeries(nameSlug) {
|
||||
onGoToArtist(nameSlug) {
|
||||
dispatch(push(`${window.Sonarr.urlBase}/artist/${nameSlug}`));
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user