Skip to content

Commit 750eb66

Browse files
authored
fix(i18n): force install command direction to 'ltr' (#1055)
1 parent 7b32785 commit 750eb66

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/components/Terminal/Install.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ const copyCreateCommand = () => copyCreate(getFullCreateCommand())
104104
<span class="w-2.5 h-2.5 rounded-full bg-fg-subtle" />
105105
<span class="w-2.5 h-2.5 rounded-full bg-fg-subtle" />
106106
</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">
108108
<!-- Install command - render all PM variants, CSS controls visibility -->
109109
<div
110110
v-for="pm in packageManagers"
@@ -162,7 +162,7 @@ const copyCreateCommand = () => copyCreate(getFullCreateCommand())
162162
<!-- Run command (only if package has executables) - render all PM variants -->
163163
<template v-if="executableInfo?.hasExecutable">
164164
<!-- Comment line -->
165-
<div class="flex items-center gap-2 pt-1">
165+
<div class="flex items-center gap-2 pt-1" dir="auto">
166166
<span class="text-fg-subtle font-mono text-sm select-none"
167167
># {{ $t('package.run.locally') }}</span
168168
>
@@ -196,7 +196,7 @@ const copyCreateCommand = () => copyCreate(getFullCreateCommand())
196196
<!-- Create command (for packages with associated create-* package) - render all PM variants -->
197197
<template v-if="createPackageInfo">
198198
<!-- 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">
200200
<span class="text-fg-subtle font-mono text-sm"># {{ $t('package.create.title') }}</span>
201201
<TooltipApp
202202
:text="$t('package.create.view', { packageName: createPackageInfo.packageName })"

0 commit comments

Comments
 (0)