From 5a54d6779e7c23ec37e7623890734e48b40dc161 Mon Sep 17 00:00:00 2001 From: Dominik Buszowiecki Date: Fri, 27 Mar 2026 10:58:44 -0400 Subject: [PATCH] fix(dashboards): Hide prebuilt dashboards from All Dashboards list Add excludePrebuilt filter to the dashboard list API call when viewing All Dashboards. Prebuilt dashboards remain accessible via the Sentry Built tab. Refs LINEAR-DAIN-1415 Co-Authored-By: Claude Opus 4.6 --- static/app/views/dashboards/manage/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/app/views/dashboards/manage/index.tsx b/static/app/views/dashboards/manage/index.tsx index 53ff00990f0b39..93d341858294e9 100644 --- a/static/app/views/dashboards/manage/index.tsx +++ b/static/app/views/dashboards/manage/index.tsx @@ -208,7 +208,9 @@ function ManageDashboards() { pin: 'favorites', per_page: dashboardsLayout === GRID ? rowCount * columnCount : DASHBOARD_TABLE_NUM_ROWS, - ...(isOnlyPrebuilt ? {filter: DashboardFilter.ONLY_PREBUILT} : {}), + ...(isOnlyPrebuilt + ? {filter: DashboardFilter.ONLY_PREBUILT} + : {filter: DashboardFilter.EXCLUDE_PREBUILT}), }, }, ],