[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: deno command template spacing (#5)

authored by

Luke Nelson and committed by
GitHub
545225ad 5cc31b6c

+2 -2
+2 -2
app/pages/package/[...name].vue
··· 505 505 </div> 506 506 <div class="flex items-center gap-2 px-4 pt-3 pb-4"> 507 507 <span class="text-fg-subtle font-mono text-sm select-none">$</span> 508 - <code class="font-mono text-sm"><ClientOnly><span class="text-fg">{{ selectedPMLabel }}</span> <span class="text-fg-muted">{{ selectedPMAction }}</span>&nbsp;<span 508 + <code class="font-mono text-sm"><ClientOnly><span class="text-fg">{{ selectedPMLabel }}</span> <span class="text-fg-muted">{{ selectedPMAction }}</span><span 509 509 v-if="selectedPM !== 'deno'" 510 510 class="text-fg-muted" 511 - > {{ pkg.name }}</span><span 511 + >&nbsp;{{ pkg.name }}</span><span 512 512 v-else 513 513 class="text-fg-muted" 514 514 >{{ pkg.name }}</span><template #fallback><span class="text-fg">npm</span>&nbsp;<span class="text-fg-muted">install {{ pkg.name }}</span></template></ClientOnly></code>