Skip to content

Commit 96bb1b1

Browse files
committed
fix: correct text select; rebove border at the bottom of the text area; add three dots to the thinking animation
AdminForth/1786/ability-to-edit-agent-prompt-a
1 parent 007aeca commit 96bb1b1

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

custom/ChatFooter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
rows="1"
2121
@input="autoResize"
2222
:class="[
23-
'h-8 px-4 py-3 border-b rounded-xl rounded-b-none w-full resize-none overflow-hidden text-lightInputText dark:text-darkInputText rounded-md bg-transparent text-sm bg-gray-50 dark:bg-gray-700 dark:border-gray-600 focus:outline-none',
23+
'h-8 px-4 py-3 rounded-xl rounded-b-none w-full resize-none overflow-hidden text-lightInputText dark:text-darkInputText rounded-md bg-transparent text-sm bg-gray-50 dark:bg-gray-700 dark:border-gray-600 focus:outline-none',
2424
{ '!text-base': coreStore.isIos }
2525
]"
2626
:placeholder="placeholderText"

custom/conversation_area/MessageRenderer.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<template>
22
<div
33
class="relative flex flex-col w-full group/msg"
4+
@mouseenter="showEditButtonOnHover"
5+
@mouseleave="hideEditButtonOnHover"
46
>
57
<div
68
v-if="showActionsBar"
79
class="absolute w-full h-[calc(100%+1.5rem)] pb-8"
8-
@mouseenter="showEditButtonOnHover"
9-
@mouseleave="hideEditButtonOnHover"
1010
/>
1111
<Transition
1212
enter-active-class="transition ease-out duration-200"

custom/conversation_area/ProcessingTimeline.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
>
1717
{{ inProgress ? $t('Thinking') : $t('Thoughts') }}
1818
</p>
19-
19+
<ThreeDotsAnimation v-if="inProgress" />
2020
<span v-if="thinkingDuration > 0">({{ (thinkingDuration/1000).toFixed(2) }} s)</span>
2121
<IconAngleDownOutline
2222
v-if="ToolOrReasoningParts.length > 0"

custom/conversation_area/TextRenderer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div
3-
class="flex items-center justify-center rounded-xl border px-6 border-gray-200 dark:border-gray-700 min-w-0 transition-shadow duration-150"
3+
class="flex items-center justify-center rounded-xl border px-6 border-gray-200 dark:border-gray-700 min-w-0 transition-shadow duration-150 z-20"
44
@click="handleMarkdownLinkClick"
55
:class="[
66
hasVegaLite ? 'w-full my-2' : 'm-2',

0 commit comments

Comments
 (0)