[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(i18n): force install command direction to `'ltr'` (#1055)

authored by

Bobbie Goede and committed by
GitHub
750eb664 7b32785b

+3 -3
+3 -3
app/components/Terminal/Install.vue
··· 104 104 <span class="w-2.5 h-2.5 rounded-full bg-fg-subtle" /> 105 105 <span class="w-2.5 h-2.5 rounded-full bg-fg-subtle" /> 106 106 </div> 107 - <div class="px-3 pt-2 pb-3 sm:px-4 sm:pt-3 sm:pb-4 space-y-1 overflow-x-auto"> 107 + <div class="px-3 pt-2 pb-3 sm:px-4 sm:pt-3 sm:pb-4 space-y-1 overflow-x-auto" dir="ltr"> 108 108 <!-- Install command - render all PM variants, CSS controls visibility --> 109 109 <div 110 110 v-for="pm in packageManagers" ··· 162 162 <!-- Run command (only if package has executables) - render all PM variants --> 163 163 <template v-if="executableInfo?.hasExecutable"> 164 164 <!-- Comment line --> 165 - <div class="flex items-center gap-2 pt-1"> 165 + <div class="flex items-center gap-2 pt-1" dir="auto"> 166 166 <span class="text-fg-subtle font-mono text-sm select-none" 167 167 ># {{ $t('package.run.locally') }}</span 168 168 > ··· 196 196 <!-- Create command (for packages with associated create-* package) - render all PM variants --> 197 197 <template v-if="createPackageInfo"> 198 198 <!-- Comment line --> 199 - <div class="flex items-center gap-2 pt-1 select-none"> 199 + <div class="flex items-center gap-2 pt-1 select-none" dir="auto"> 200 200 <span class="text-fg-subtle font-mono text-sm"># {{ $t('package.create.title') }}</span> 201 201 <TooltipApp 202 202 :text="$t('package.create.view', { packageName: createPackageInfo.packageName })"