From 5fae202760221c5e6018a183b9a42377c634bf50 Mon Sep 17 00:00:00 2001 From: Josh Jones <1238461+vertigo235@users.noreply.github.com> Date: Fri, 29 Dec 2017 12:22:54 -0500 Subject: [PATCH] Update text to say album instead of episode. (#170) --- frontend/src/Activity/Queue/RemoveQueueItemModal.js | 2 +- frontend/src/Album/Search/InteractiveEpisodeSearch.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.
; }