1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Limit search input to first character matching when only one character is typed

This commit is contained in:
Mark McDowall
2019-04-27 20:14:44 -07:00
parent 2ee0ae1f9e
commit 5293349785
2 changed files with 28 additions and 2 deletions
@@ -26,6 +26,7 @@ function createCleanSeriesSelector() {
sortTitle,
images,
alternateTitles,
firstCharacter: title.charAt(0).toLowerCase(),
tags: tags.map((id) => {
return allTags.find((tag) => tag.id === id);
})