[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: compare page package desc truncate invalid (#1312)

authored by

btea and committed by
GitHub
94739a7c 3c0223b6

+4 -1
+4 -1
app/components/Compare/PackageSelector.vue
··· 204 204 @click="addPackage(result.name)" 205 205 > 206 206 <span class="font-mono text-sm text-fg block">{{ result.name }}</span> 207 - <span v-if="result.description" class="text-xs text-fg-muted truncate mt-0.5"> 207 + <span 208 + v-if="result.description" 209 + class="text-xs text-fg-muted truncate mt-0.5 w-full block" 210 + > 208 211 {{ result.description }} 209 212 </span> 210 213 </ButtonBase>