Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions echo/frontend/src/components/chat/AgenticChatPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -472,9 +472,9 @@ export const AgenticChatPanel = ({
)}
{isRunInFlight && (
<Button
variant="light"
variant="outline"
size="xs"
leftSection={
rightSection={
isStopping ? (
<Loader size={12} />
) : (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -555,9 +555,7 @@ const ConversationAccordionItem = ({
<Stack gap="xs">
<Group gap="sm">
<Text className="pl-[4px] text-sm font-normal">
{conversation.participant_name ||
conversation.title ||
conversation.participant_email}
{conversation.participant_name || conversation.title}
</Text>

{conversation.title && conversation.participant_name && (
Expand Down
2 changes: 2 additions & 0 deletions echo/frontend/src/components/conversation/hooks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -823,13 +823,15 @@ export const CONVERSATION_FIELDS_WITHOUT_PROCESSING_STATUS: QueryFields<
"project_id",
"participant_name",
"participant_email",
"title",
"tags",
"summary",
"source",
"chunks",
"duration",
"is_finished",
"is_audio_processing_finished",
"is_anonymized",
"linked_conversations",
"linking_conversations",
];
Expand Down