diff --git a/nuxt4/app/components/contacts/Filters.vue b/nuxt4/app/components/contacts/Filters.vue index f80091f..2839cd0 100644 --- a/nuxt4/app/components/contacts/Filters.vue +++ b/nuxt4/app/components/contacts/Filters.vue @@ -111,7 +111,7 @@ const hasActiveFilters = computed(() => { props.modelValue.id || props.modelValue.telefono || !props.modelValue.empleado || - props.modelValue.presente + !props.modelValue.presente ) }) diff --git a/nuxt4/app/composables/useContacts.ts b/nuxt4/app/composables/useContacts.ts index f84b8e0..0710db8 100644 --- a/nuxt4/app/composables/useContacts.ts +++ b/nuxt4/app/composables/useContacts.ts @@ -40,7 +40,7 @@ export const useContacts = () => { id: '', telefono: '', empleado: true, - presente: false + presente: true }) }) @@ -199,7 +199,7 @@ export const useContacts = () => { id: '', telefono: '', empleado: true, - presente: false + presente: true } }