From 50215fc657d0be247e7c93286a33895c74baa9ab Mon Sep 17 00:00:00 2001 From: David Ascanio Date: Wed, 3 Jun 2026 19:41:00 -0300 Subject: [PATCH] default internal search true --- app/components/PublicationDetail.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/PublicationDetail.vue b/app/components/PublicationDetail.vue index 3f64983..0abf901 100644 --- a/app/components/PublicationDetail.vue +++ b/app/components/PublicationDetail.vue @@ -592,7 +592,7 @@ function clearLocalQuery() { const localQuery = ref('') const debouncedLocalQuery = useDebounce(localQuery, 200) -const showInternalSearch = ref(false) +const showInternalSearch = ref(true) const internalSearchRef = ref<{ input?: HTMLInputElement } | null>(null) const metaExpanded = ref(true) @@ -606,7 +606,7 @@ function toggleInternalSearch() { } } -watch(() => props.document?.id, () => { metaExpanded.value = true }) +watch(() => props.document?.id, () => { metaExpanded.value = true; showInternalSearch.value = true }) watch(debouncedLocalQuery, (q) => { // Cualquier cambio en el input activa el Estado 2