Skip to content

Commit

Permalink
Merge pull request #2160 from Agenta-AI/fix/llm-group-tab-issue
Browse files Browse the repository at this point in the history
fix(frontend): observability LLM traceTab issue
  • Loading branch information
mmabrouk authored Oct 31, 2024
2 parents b5ecf46 + d53e893 commit 4aa05ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agenta-web/src/pages/apps/[app_id]/observability/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ const ObservabilityDashboard = ({}: Props) => {
}, [])

const fetchFilterdTrace = async () => {
const focusPoint = traceTabs == "tree" || traceTabs == "node" ? `focus=${traceTabs}` : ""
const focusPoint = traceTabs == "chat" ? "focus=node" : `focus=${traceTabs}`
const filterQuery = filters[0]?.operator
? `&filtering={"conditions":${JSON.stringify(filters)}}`
: ""
Expand Down

0 comments on commit 4aa05ed

Please sign in to comment.