1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-25 17:17:02 +00:00

Update text to say album instead of episode. (#170)

This commit is contained in:
Josh Jones 2017-12-29 12:22:54 -05:00 committed by Qstick
parent e98f7398b0
commit 5fae202760
2 changed files with 2 additions and 2 deletions

View file

@ -79,7 +79,7 @@ class RemoveQueueItemModal extends Component {
type={inputTypes.CHECK} type={inputTypes.CHECK}
name="blacklist" name="blacklist"
value={blacklist} value={blacklist}
helpText="Prevents Lidarr from automatically grabbing this episode again" helpText="Prevents Lidarr from automatically grabbing this album again"
onChange={this.onBlacklistChange} onChange={this.onBlacklistChange}
/> />
</FormGroup> </FormGroup>

View file

@ -83,7 +83,7 @@ function InteractiveEpisodeSearch(props) {
if (isFetching) { if (isFetching) {
return <LoadingIndicator />; return <LoadingIndicator />;
} else if (!isFetching && !!error) { } else if (!isFetching && !!error) {
return <div>Unable to load results for this episode search. Try again later.</div>; return <div>Unable to load results for this album search. Try again later.</div>;
} else if (isPopulated && !items.length) { } else if (isPopulated && !items.length) {
return <div>No results found.</div>; return <div>No results found.</div>;
} }