Skip to content

Commit 6b6fccf

Browse files
committed
fix: make zone under tags clickable
1 parent fdd92d4 commit 6b6fccf

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

app/components/Package/Card.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,13 @@ const pkgDescription = useMarkdown(() => ({
163163
<ul
164164
v-if="result.package.keywords?.length"
165165
:aria-label="$t('package.card.keywords')"
166-
class="relative z-10 flex flex-wrap gap-1.5 mt-3 pt-3 border-t border-border list-none m-0 p-0"
166+
class="relative z-10 flex flex-wrap gap-1.5 mt-3 pt-3 border-t border-border list-none m-0 p-0 pointer-events-none"
167167
>
168-
<li v-for="keyword in result.package.keywords.slice(0, 5)" :key="keyword" class="tag">
168+
<li
169+
v-for="keyword in result.package.keywords.slice(0, 5)"
170+
:key="keyword"
171+
class="tag pointer-events-auto"
172+
>
169173
{{ keyword }}
170174
</li>
171175
</ul>

0 commit comments

Comments
 (0)