Fix that the search box does not work to the Enter key on the soft keyboard of the mobile phone

This commit is contained in:
zhcode 2023-08-12 21:27:12 +08:00
parent 3c347c854c
commit e973da3f61

View file

@ -78,7 +78,7 @@ export const SearchBar = (props: Props): JSX.Element => {
setLocalSearch(encodedURL);
}
if (e.code === 'Enter' || e.code === 'NumpadEnter') {
if (e.code === 'Enter' || e.code === 'NumpadEnter' || e.keyCode === 13) {
if (!primarySearch.prefix) {
// Prefix not found -> emit notification
createNotification({