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.
1 parent 2ec2a7d commit f1cc98fCopy full SHA for f1cc98f
app/components/Compare/PackageSelector.vue
@@ -307,7 +307,7 @@ function handleFocus() {
307
v-if="result.description"
308
class="text-xs text-fg-muted truncate mt-0.5 w-full block"
309
>
310
- {{ result.description }}
+ {{ decodeHtmlEntities(result.description) }}
311
</span>
312
</ButtonBase>
313
</div>
app/components/Package/TableRow.vue
@@ -69,7 +69,7 @@ const allMaintainersText = computed(() => {
69
v-if="isColumnVisible('description')"
70
class="py-2 px-3 text-sm text-fg-muted max-w-xs truncate"
71
72
- {{ pkg.description || '-' }}
+ {{ decodeHtmlEntities(pkg.description || '-') }}
73
</td>
74
75
<!-- Downloads -->
0 commit comments