removed auto blur on search text field

This commit is contained in:
zurdi
2025-04-10 15:31:21 +00:00
parent 100dea3ee5
commit cccf2da223

View File

@@ -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)"