mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 23:42:07 +01:00
removed auto blur on search text field
This commit is contained in:
@@ -42,10 +42,6 @@ async function fetchRoms() {
|
||||
const refetchRoms = debounce(async () => {
|
||||
if (searchTerm.value === null) return;
|
||||
|
||||
// Auto hide android keyboard
|
||||
const inputElement = document.getElementById("search-text-field");
|
||||
inputElement?.blur();
|
||||
|
||||
// Update URL with search term
|
||||
router.replace({ query: { search: searchTerm.value } });
|
||||
|
||||
@@ -127,7 +123,6 @@ watch(
|
||||
rounded="0"
|
||||
:label="t('common.search')"
|
||||
v-model="searchTerm"
|
||||
:disabled="fetchingRoms"
|
||||
@keyup.enter="refetchRoms"
|
||||
@click:clear="clearInput"
|
||||
@update:model-value="nextTick(refetchRoms)"
|
||||
|
||||
Reference in New Issue
Block a user