File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ <h2 class="font-bold ml-4">Conversations</h2>
37
37
< div v-for ="conv in conversations " :class ="{
38
38
'btn btn-ghost justify-start font-normal': true,
39
39
'btn-active': conv.id === viewingConvId,
40
- } " @click ="setViewingConv(conv.id) ">
40
+ } " @click ="setViewingConv(conv.id) " dir =" auto " >
41
41
< span class ="truncate "> {{ conv.messages[0].content }}</ span >
42
42
</ div >
43
43
< div class ="text-center text-xs opacity-40 mt-auto mx-4 ">
@@ -156,6 +156,7 @@ <h2 class="font-bold ml-4">Conversations</h2>
156
156
@keydown.enter.shift.exact.prevent ="inputMsg += '\n' "
157
157
:disabled ="isGenerating "
158
158
id ="msg-input "
159
+ dir ="auto "
159
160
> </ textarea >
160
161
< button v-if ="!isGenerating " class ="btn btn-primary ml-2 " @click ="sendMessage " :disabled ="inputMsg.length === 0 "> Send</ button >
161
162
< button v-else class ="btn btn-neutral ml-2 " @click ="stopGeneration "> Stop</ button >
@@ -244,7 +245,7 @@ <h3 class="text-lg font-bold mb-6">Settings</h3>
244
245
< div :class ="{
245
246
'chat-bubble markdown': true,
246
247
'chat-bubble-base-300': msg.role !== 'user',
247
- } ">
248
+ } " dir =" auto " >
248
249
<!-- textarea for editing message -->
249
250
< template v-if ="editingContent !== null ">
250
251
< textarea
You can’t perform that action at this time.
0 commit comments