Skip to content

Commit

Permalink
fixed groupnmae
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantgillespie committed Aug 13, 2024
1 parent 7691829 commit 0c8558c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Block/Directory.vue
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ const toggleFilter = () => {
</template>
<template v-else>
<div v-for="(group, groupName) in filteredItems" :key="groupName" class="group-container">
<h2 class="group-title">{{ formatTitle(groupName) }}</h2>
<h2 v-if="groupName" class="group-title">{{ formatTitle(groupName as string) }}</h2>
<BaseCardGroup v-auto-animate :grid="block.grid">
<BaseCard
v-for="card in group"
Expand Down

0 comments on commit 0c8558c

Please sign in to comment.