Skip to content

Commit e3218d3

Browse files
authored
feat: Add assistant name to UI (#4569)
* Add assistant name to UI * Fix tailwind styling class
1 parent ae632b5 commit e3218d3

File tree

1 file changed

+3
-0
lines changed
  • web/src/app/ee/admin/performance/query-history/[id]

1 file changed

+3
-0
lines changed

web/src/app/ee/admin/performance/query-history/[id]/page.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ export default function QueryPage(props: { params: Promise<{ id: string }> }) {
9595
<CardSection className="mt-4">
9696
<Title>Chat Session Details</Title>
9797

98+
<Text className="flex flex-wrap whitespace-normal mt-1 text-sm">
99+
{chatSessionSnapshot.assistant_name}
100+
</Text>
98101
<Text className="flex flex-wrap whitespace-normal mt-1 text-xs">
99102
{chatSessionSnapshot.user_email &&
100103
`${chatSessionSnapshot.user_email}, `}

0 commit comments

Comments
 (0)