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

This commit is contained in:
Bogdan
2023-06-21 07:25:09 +03:00
parent 3da00f75dc
commit 08a3682b89
2 changed files with 31 additions and 2 deletions
@@ -26,6 +26,7 @@ function createCleanAuthorSelector() {
sortName,
titleSlug,
images,
firstCharacter: authorName.charAt(0).toLowerCase(),
tags: tags.reduce((acc, id) => {
const matchingTag = allTags.find((tag) => tag.id === id);
@@ -58,6 +59,7 @@ function createCleanBookSelector() {
sortName: title,
titleSlug,
images,
firstCharacter: title.charAt(0).toLowerCase(),
tags: []
};
});