[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.

feat: link package headers to package pages (#911)

authored by

TAKAHASHI Shuuji and committed by
GitHub
a29b6e39 8abd52e8

+6 -2
+6 -2
app/components/Compare/ComparisonGrid.vue
··· 22 22 :key="index" 23 23 class="comparison-cell comparison-cell-header" 24 24 > 25 - <span class="font-mono text-sm font-medium text-fg truncate" :title="header"> 25 + <NuxtLink 26 + :to="`/package/${header}`" 27 + class="link-subtle font-mono text-sm font-medium text-fg truncate" 28 + :title="header" 29 + > 26 30 {{ header }} 27 - </span> 31 + </NuxtLink> 28 32 </div> 29 33 </div> 30 34