-
Notifications
You must be signed in to change notification settings - Fork 86
1/2 automatically generate and render breadcrumbs in dashboard with Next.js /[tenantId]/@breadcrumbs/[...slug]/page.tsx parallel route
#1375
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…ntials/new/bearer/page.tsx
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Claude finished @dimaMachina's task —— View job Code Review CompleteTodo List:
Critical Issues
|
…s/ai-calls/page.tsx
…s/conversations/[conversationId]/page.tsx
…s/tool-calls/page.tsx
|
Deployment failed with the following error: |
/[tenantId]/@breadcrumbs/[...slug]/page.tsx parallel route
| // Server-side pagination is now handled by the hook | ||
|
|
||
| // Refresh data when refreshKey changes | ||
| useEffect(() => { | ||
| if (refreshKey && refreshKey > 0) { | ||
| refresh(); | ||
| refreshAggregateStats(); | ||
| } | ||
| }, [refreshKey, refresh, refreshAggregateStats]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this useEffect is never running since refreshKey is falsy (0) cc @shagun-singh-inkeep
| const [refreshKey, _setRefreshKey] = useState(0); |
…ets/[datasetId]/runs/[runId]/page.tsx
…ext.js `/[tenantId]/@breadcrumbs/[...slug]/page.tsx` parallel route (#1375) * Delete agents-manage-ui/src/app/[tenantId]/projects/[projectId]/credentials/new/bearer/page.tsx * Delete agents-manage-ui/src/app/[tenantId]/projects/[projectId]/traces/page.tsx * Delete agents-manage-ui/src/app/[tenantId]/projects/[projectId]/traces/ai-calls/page.tsx * Delete agents-manage-ui/src/app/[tenantId]/projects/[projectId]/traces/conversations/[conversationId]/page.tsx * Delete agents-manage-ui/src/app/[tenantId]/projects/[projectId]/traces/tool-calls/page.tsx * Update new-credential-form.tsx * Refactor AICallsBreakdown to use Next.js routing * Refactor ConversationDetail component structure * Refactor ToolCallsBreakdown component for routing * Update traces-overview.tsx * Delete agents-manage-ui/src/app/[tenantId]/projects/[projectId]/datasets/[datasetId]/runs/[runId]/page.tsx * Delete agents-manage-ui/src/app/[tenantId]/projects/[projectId]/datasets/new/page.tsx
This PR must be merged first to preserve the Git history of the deleted
pagefiles and the components that were moved into their respective locations in #1376 PR.Deleted files:
agents-manage-ui/src/app/[tenantId]/projects/[projectId]/credentials/new/bearer/page.tsxagents-manage-ui/src/app/[tenantId]/projects/[projectId]/traces/page.tsxagents-manage-ui/src/app/[tenantId]/projects/[projectId]/traces/ai-calls/page.tsxagents-manage-ui/src/app/[tenantId]/projects/[projectId]/traces/conversations/[conversationId]/page.tsxagents-manage-ui/src/app/[tenantId]/projects/[projectId]/traces/tool-calls/page.tsxagents-manage-ui/src/app/[tenantId]/projects/[projectId]/datasets/[datasetId]/runs/[runId]/page.tsxagents-manage-ui/src/app/[tenantId]/projects/[projectId]/datasets/new/page.tsx