[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: use `~` in preference to `@` for npm users

+4 -4
+1 -1
app/components/OrgMembersPanel.vue
··· 433 433 :to="{ name: '~username', params: { username: member.name } }" 434 434 class="font-mono text-sm text-fg hover:text-fg transition-colors duration-200" 435 435 > 436 - @{{ member.name }} 436 + ~{{ member.name }} 437 437 </NuxtLink> 438 438 <span 439 439 class="px-1.5 py-0.5 font-mono text-xs border rounded"
+1 -1
app/components/OrgTeamsPanel.vue
··· 423 423 :to="{ name: '~username', params: { username: user } }" 424 424 class="font-mono text-sm text-fg-muted hover:text-fg transition-colors duration-200" 425 425 > 426 - @{{ user }} 426 + ~{{ user }} 427 427 </NuxtLink> 428 428 <span class="font-mono text-sm text-fg">{{ teamName }}</span> 429 429 <button
+1 -1
app/components/PackageCard.vue
··· 87 87 class="flex items-center gap-1.5" 88 88 > 89 89 <dt class="sr-only">{{ $t('package.card.publisher') }}</dt> 90 - <dd class="font-mono">@{{ result.package.publisher.username }}</dd> 90 + <dd class="font-mono">{{ result.package.publisher.username }}</dd> 91 91 </div> 92 92 <div v-if="result.package.date" class="flex items-center gap-1.5"> 93 93 <dt class="sr-only">{{ $t('package.card.updated') }}</dt>
+1 -1
app/pages/~[username]/orgs.vue
··· 130 130 }}</span> 131 131 </div> 132 132 <div> 133 - <h1 class="font-mono text-2xl sm:text-3xl font-medium">@{{ username }}</h1> 133 + <h1 class="font-mono text-2xl sm:text-3xl font-medium">~{{ username }}</h1> 134 134 <p class="text-fg-muted text-sm mt-1">{{ $t('user.orgs_page.title') }}</p> 135 135 </div> 136 136 </div>