feat(dashboards): Hide detail/summary prebuilt dashboards from list by default#110625
Merged
DominikB2014 merged 3 commits intomasterfrom Mar 13, 2026
Conversation
…y default Add a `hidden` field to PrebuiltDashboard config to exclude certain dashboards from the API response while still syncing them to the DB. Hidden dashboards can be included by passing `?filter=showHidden`. Marks detail and summary dashboards (Query Details, Domain Details, Web Vitals Page Summary, Mobile Vitals App Starts/Screen Loads/ Screen Rendering, AI Agent/MCP detail pages, Frontend Assets Summary, Queue Summary) as hidden since they are navigated to contextually rather than browsed from the dashboards list. Co-Authored-By: Claude Opus 4.6 <[email protected]>
Remove hidden flag from AI Agents Model Details, AI Agents Tool Details, MCP Tool Details, MCP Resource Details, and MCP Prompt Details prebuilt dashboards.
Contributor
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Existing tests assumed all synced prebuilt dashboards appear in the API response. Update assertions to account for hidden dashboards being excluded from responses by default.
Contributor
Backend Test FailuresFailures on
|
bcoe
approved these changes
Mar 13, 2026
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Adds a
hiddenfield to thePrebuiltDashboardconfig so certain prebuilt dashboardscan be excluded from the dashboards list API response while still being synced to the
database (so they remain accessible via direct navigation).
Detail and summary dashboards are navigated to contextually from their parent pages
rather than browsed from the main dashboards list, so showing them clutters the list.
Hidden dashboards can still be included by passing
?filter=showHidden.