Skip to content

Commit 523a56a

Browse files
committed
fix(i18n): set text direction to 'auto'
1 parent 6706126 commit 523a56a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

app/components/Terminal/Install.vue

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,12 @@ 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="auto">
108108
<!-- Install command - render all PM variants, CSS controls visibility -->
109109
<div
110110
v-for="pm in packageManagers"
111111
:key="`install-${pm.id}`"
112112
:data-pm-cmd="pm.id"
113-
dir="ltr"
114113
class="flex items-center gap-2 group/installcmd min-w-0"
115114
>
116115
<span class="text-fg-subtle font-mono text-sm select-none shrink-0">$</span>
@@ -163,7 +162,7 @@ const copyCreateCommand = () => copyCreate(getFullCreateCommand())
163162
<!-- Run command (only if package has executables) - render all PM variants -->
164163
<template v-if="executableInfo?.hasExecutable">
165164
<!-- Comment line -->
166-
<div class="flex items-center gap-2 pt-1">
165+
<div class="flex items-center gap-2 pt-1" dir="auto">
167166
<span class="text-fg-subtle font-mono text-sm select-none"
168167
># {{ $t('package.run.locally') }}</span
169168
>
@@ -197,7 +196,7 @@ const copyCreateCommand = () => copyCreate(getFullCreateCommand())
197196
<!-- Create command (for packages with associated create-* package) - render all PM variants -->
198197
<template v-if="createPackageInfo">
199198
<!-- Comment line -->
200-
<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">
201200
<span class="text-fg-subtle font-mono text-sm"># {{ $t('package.create.title') }}</span>
202201
<TooltipApp
203202
:text="$t('package.create.view', { packageName: createPackageInfo.packageName })"

0 commit comments

Comments
 (0)