[UI Work] Artist Detail, Album Dialog, Album Search, Album Missing Search

This commit is contained in:
Qstick
2017-09-14 23:35:12 -04:00
parent 5fec72395c
commit 0a7f18e843
39 changed files with 559 additions and 709 deletions
@@ -21,11 +21,11 @@ function createMapStateToProps() {
return false;
}
return command.body.episodeIds.indexOf(episodeId) > -1;
return command.body.albumIds.indexOf(episodeId) > -1;
});
return {
seriesMonitored: series.monitored,
artistMonitored: series.monitored,
seriesType: series.seriesType,
isSearching
};
@@ -38,7 +38,7 @@ function createMapDispatchToProps(dispatch, props) {
onSearchPress(name, path) {
dispatch(executeCommand({
name: commandNames.EPISODE_SEARCH,
episodeIds: [props.episodeId]
albumIds: [props.episodeId]
}));
}
};