We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
<PackageCard>
1 parent ff5da1a commit 03eb543Copy full SHA for 03eb543
1 file changed
app/components/PackageCard.vue
@@ -140,13 +140,8 @@ const emit = defineEmits<{
140
aria-label="Keywords"
141
class="relative z-10 flex flex-wrap gap-1.5 mt-3 pt-3 border-t border-border list-none m-0 p-0"
142
>
143
- <li v-for="keyword in result.package.keywords.slice(0, 5)" :key="keyword">
144
- <NuxtLink
145
- :to="{ name: 'search', query: { q: `keywords:${keyword}` } }"
146
- class="tag decoration-none focus-visible:ring-2 focus-visible:ring-fg/50 focus-visible:outline-none"
147
- >
148
- {{ keyword }}
149
- </NuxtLink>
+ <li v-for="keyword in result.package.keywords.slice(0, 5)" :key="keyword" class="tag">
+ {{ keyword }}
150
</li>
151
</ul>
152
</article>
0 commit comments