mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
Fixed: Remove value length restriction from ArtistSearch
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
@@ -182,17 +182,15 @@ class ArtistSearchInput extends Component {
|
||||
});
|
||||
}
|
||||
|
||||
if (value.length >= 3) {
|
||||
suggestionGroups.push({
|
||||
title: 'Add New Artist',
|
||||
suggestions: [
|
||||
{
|
||||
type: ADD_NEW_TYPE,
|
||||
title: value
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
suggestionGroups.push({
|
||||
title: 'Add New Artist',
|
||||
suggestions: [
|
||||
{
|
||||
type: ADD_NEW_TYPE,
|
||||
title: value
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
const inputProps = {
|
||||
ref: this.setInputRef,
|
||||
|
||||
Reference in New Issue
Block a user