diff --git a/app/pages/projects/[slug].vue b/app/pages/projects/[slug].vue index 57ba319..35c4b78 100644 --- a/app/pages/projects/[slug].vue +++ b/app/pages/projects/[slug].vue @@ -46,7 +46,6 @@ const formattedDate = computed(() => { v-if="project" class="space-y-8" > -
{
-
{
-
{ - const { data: projects } = await useAsyncData('projects', () => { - return queryCollection('projects').where('extension', '=', 'md').order('favorite', 'DESC').order('publishedAt', 'DESC').all() + return queryCollection('projects') + .where('extension', '=', 'md') + .order('favorite', 'DESC') + .order('publishedAt', 'DESC') + .all() }) useSeoMeta({ @@ -45,12 +49,8 @@ const { statusColors, typeColors } = useProjectColors() function toggleTag(tag: string) { const index = selectedTags.value.indexOf(tag) - if (index > -1) { - selectedTags.value.splice(index, 1) - } - else { - selectedTags.value.push(tag) - } + if (index > -1) selectedTags.value.splice(index, 1) + else selectedTags.value.push(tag) } function clearFilters() { @@ -63,18 +63,17 @@ const activeFilterCount = computed(() => (selectedStatus.value ? 1 : 0) + select -
-
-

- No projects found with the selected filters. +

+ No experiments found +

+

+ No projects match the selected filters.

Clear Filters