diff --git a/frontend/src/Activity/Queue/RemoveQueueItemModal.js b/frontend/src/Activity/Queue/RemoveQueueItemModal.js index 915174dbf..c69c70e1a 100644 --- a/frontend/src/Activity/Queue/RemoveQueueItemModal.js +++ b/frontend/src/Activity/Queue/RemoveQueueItemModal.js @@ -79,7 +79,7 @@ class RemoveQueueItemModal extends Component { type={inputTypes.CHECK} name="blacklist" value={blacklist} - helpText="Prevents Lidarr from automatically grabbing this episode again" + helpText="Prevents Lidarr from automatically grabbing this album again" onChange={this.onBlacklistChange} /> diff --git a/frontend/src/Album/Search/InteractiveEpisodeSearch.js b/frontend/src/Album/Search/InteractiveEpisodeSearch.js index eb8f8493f..b0e0e18f9 100644 --- a/frontend/src/Album/Search/InteractiveEpisodeSearch.js +++ b/frontend/src/Album/Search/InteractiveEpisodeSearch.js @@ -83,7 +83,7 @@ function InteractiveEpisodeSearch(props) { if (isFetching) { return ; } else if (!isFetching && !!error) { - return
Unable to load results for this episode search. Try again later.
; + return
Unable to load results for this album search. Try again later.
; } else if (isPopulated && !items.length) { return
No results found.
; }