Merge branch 'gethomepage:dev' into integration

This commit is contained in:
djeinstine 2024-11-11 10:48:31 +01:00 committed by GitHub
commit 11c3127aad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -98,6 +98,12 @@ export default function QuickLaunch({ servicesAndBookmarks, searchString, setSea
} else if (event.key === "ArrowUp" && currentItemIndex > 0) {
setCurrentItemIndex(currentItemIndex - 1);
event.preventDefault();
} else if (
event.key === "ArrowRight" &&
results[currentItemIndex] &&
results[currentItemIndex].type === "searchSuggestion"
) {
setSearchString(results[currentItemIndex].name);
}
}