Fixed: Allow Interactive Season Search when all episodes are unmonitored

This commit is contained in:
Mark McDowall 2019-10-07 09:39:20 -07:00
parent d41a2cad73
commit 3baed292e1
1 changed files with 4 additions and 4 deletions

View File

@ -324,7 +324,7 @@ class SeriesDetailsSeason extends Component {
<MenuItem <MenuItem
onPress={this.onInteractiveSearchPress} onPress={this.onInteractiveSearchPress}
isDisabled={!episodeCount} isDisabled={!totalEpisodeCount}
> >
<Icon <Icon
className={styles.actionMenuIcon} className={styles.actionMenuIcon}
@ -360,7 +360,7 @@ class SeriesDetailsSeason extends Component {
<MenuItem <MenuItem
onPress={this.onHistoryPress} onPress={this.onHistoryPress}
isDisabled={!episodeCount} isDisabled={!totalEpisodeCount}
> >
<Icon <Icon
className={styles.actionMenuIcon} className={styles.actionMenuIcon}
@ -388,7 +388,7 @@ class SeriesDetailsSeason extends Component {
name={icons.INTERACTIVE} name={icons.INTERACTIVE}
title="Interactive search for all episodes in this season" title="Interactive search for all episodes in this season"
size={24} size={24}
isDisabled={!episodeCount} isDisabled={!totalEpisodeCount}
onPress={this.onInteractiveSearchPress} onPress={this.onInteractiveSearchPress}
/> />
@ -415,7 +415,7 @@ class SeriesDetailsSeason extends Component {
name={icons.HISTORY} name={icons.HISTORY}
title="View history for this season" title="View history for this season"
size={24} size={24}
isDisabled={!episodeCount} isDisabled={!totalEpisodeCount}
onPress={this.onHistoryPress} onPress={this.onHistoryPress}
/> />
</div> </div>