Skip to content

Commit aea0bf1

Browse files
committed
2 parents e5ea13a + 5dd0c73 commit aea0bf1

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

custom/conversation_area/ConversationArea.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<template>
22
<SessionsHistory
33
:class="agentStore.isSessionHistoryOpen ? 'translate-x-0' : '-translate-x-full'"
4-
@recalculateScroll="recalculateScroll"
54
/>
65
<div
76
v-if="agentStore.isSessionHistoryOpen"

custom/conversation_area/ToolRenderer.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
<header class="border-b border-black/5 px-3 py-2 text-[0.7rem] font-semibold uppercase tracking-[0.22em] text-gray-500 dark:border-white/10 dark:text-gray-400">
5050
{{ section.label }}
5151
</header>
52-
<div class="grid grid-cols-[auto,1fr] gap-x-3 gap-y-1 px-3 py-3 font-mono text-xs leading-5 text-gray-700 dark:text-gray-200">
52+
<div class="select-all grid grid-cols-[auto,1fr] gap-x-3 gap-y-1 px-3 py-3 font-mono text-xs leading-5 text-gray-700 dark:text-gray-200">
5353
<template v-for="line in section.lines" :key="`${section.label}-${line.number}`">
54-
<span class="select-none text-[0.7rem] text-gray-400 dark:text-gray-500">{{ line.number }}</span>
54+
<span class=" text-[0.7rem] text-gray-400 dark:text-gray-500">{{ line.number }}</span>
5555
<span class="whitespace-pre-wrap break-words">{{ line.content || ' ' }}</span>
5656
</template>
5757
</div>

0 commit comments

Comments
 (0)