From 04296934c78b913fce5cae7b289006b552545f01 Mon Sep 17 00:00:00 2001 From: Michelle Zhang <56095982+michellewzhang@users.noreply.github.com> Date: Mon, 15 Sep 2025 15:20:43 -0700 Subject: [PATCH 1/3] ref(replay): update replay summary tab name --- static/app/views/replays/detail/layout/focusTabs.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app/views/replays/detail/layout/focusTabs.tsx b/static/app/views/replays/detail/layout/focusTabs.tsx index 0b9c1b33151efe..2dc64dcbc49ea6 100644 --- a/static/app/views/replays/detail/layout/focusTabs.tsx +++ b/static/app/views/replays/detail/layout/focusTabs.tsx @@ -31,7 +31,7 @@ function getReplayTabs({ areAiFeaturesAllowed && !isVideoReplay ? ( - {t('Summary')} + {t('AI Summary')} Date: Mon, 15 Sep 2025 15:44:21 -0700 Subject: [PATCH 2/3] ref(releases): fix issue count on release homepage --- static/app/views/releases/list/releaseCard/index.tsx | 2 ++ .../views/releases/list/releaseCard/releaseCardProjectRow.tsx | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/static/app/views/releases/list/releaseCard/index.tsx b/static/app/views/releases/list/releaseCard/index.tsx index 45b0d54562cb31..6e0877ce9534ab 100644 --- a/static/app/views/releases/list/releaseCard/index.tsx +++ b/static/app/views/releases/list/releaseCard/index.tsx @@ -88,6 +88,7 @@ function ReleaseCard({ dateCreated, versionInfo, adoptionStages, + newGroups, projects, } = release; @@ -267,6 +268,7 @@ function ReleaseCard({ location={location} organization={organization} project={project} + newGroups={newGroups} releaseVersion={version} showPlaceholders={showHealthPlaceholders} showReleaseAdoptionStages={showReleaseAdoptionStages} diff --git a/static/app/views/releases/list/releaseCard/releaseCardProjectRow.tsx b/static/app/views/releases/list/releaseCard/releaseCardProjectRow.tsx index 912f393175757c..e4dc85a802bab5 100644 --- a/static/app/views/releases/list/releaseCard/releaseCardProjectRow.tsx +++ b/static/app/views/releases/list/releaseCard/releaseCardProjectRow.tsx @@ -65,6 +65,7 @@ type Props = { index: number; isTopRelease: boolean; location: Location; + newGroups: number; organization: Organization; project: ReleaseProject; releaseVersion: string; @@ -85,9 +86,10 @@ function ReleaseCardProjectRow({ releaseVersion, showPlaceholders, showReleaseAdoptionStages, + newGroups, }: Props) { const theme = useTheme(); - const {id, newGroups} = project; + const {id} = project; const crashCount = getHealthData.getCrashCount( releaseVersion, From fa78286cb24f2f54b77e55910ce2374aef0296c8 Mon Sep 17 00:00:00 2001 From: Michelle Zhang <56095982+michellewzhang@users.noreply.github.com> Date: Mon, 15 Sep 2025 15:58:57 -0700 Subject: [PATCH 3/3] :recycle: update other spots --- .../views/insights/sessions/queries/useOrganizationReleases.tsx | 2 +- static/app/views/releases/drawer/releasesDrawerTable.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static/app/views/insights/sessions/queries/useOrganizationReleases.tsx b/static/app/views/insights/sessions/queries/useOrganizationReleases.tsx index be9af7fc4069b5..c5f404ce11b3f6 100644 --- a/static/app/views/insights/sessions/queries/useOrganizationReleases.tsx +++ b/static/app/views/insights/sessions/queries/useOrganizationReleases.tsx @@ -97,7 +97,7 @@ export default function useOrganizationReleases({ : '', crash_free_sessions: release.projects[0]?.healthData?.crashFreeSessions ?? 0, sessions: release.projects[0]?.healthData?.totalSessions ?? 0, - error_count: release.projects[0]?.newGroups ?? 0, + error_count: release.newGroups ?? 0, project_id: release.projects[0]?.id ?? 0, adoption: release.projects[0]?.healthData?.adoption ?? 0, status: release.status, diff --git a/static/app/views/releases/drawer/releasesDrawerTable.tsx b/static/app/views/releases/drawer/releasesDrawerTable.tsx index 33261d46d3767c..4f908ecce4849c 100644 --- a/static/app/views/releases/drawer/releasesDrawerTable.tsx +++ b/static/app/views/releases/drawer/releasesDrawerTable.tsx @@ -94,7 +94,7 @@ export function ReleasesDrawerTable({ project: d.projects[0]!, release: d.version, date: d.dateCreated, - error_count: d.projects[0]?.newGroups ?? 0, + error_count: d.newGroups ?? 0, project_id: d.projects[0]?.id ?? 0, }));