File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
insights/sessions/queries Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ export default function useOrganizationReleases({
97
97
: '' ,
98
98
crash_free_sessions : release . projects [ 0 ] ?. healthData ?. crashFreeSessions ?? 0 ,
99
99
sessions : release . projects [ 0 ] ?. healthData ?. totalSessions ?? 0 ,
100
- error_count : release . projects [ 0 ] ?. newGroups ?? 0 ,
100
+ error_count : release . newGroups ?? 0 ,
101
101
project_id : release . projects [ 0 ] ?. id ?? 0 ,
102
102
adoption : release . projects [ 0 ] ?. healthData ?. adoption ?? 0 ,
103
103
status : release . status ,
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ export function ReleasesDrawerTable({
94
94
project : d . projects [ 0 ] ! ,
95
95
release : d . version ,
96
96
date : d . dateCreated ,
97
- error_count : d . projects [ 0 ] ?. newGroups ?? 0 ,
97
+ error_count : d . newGroups ?? 0 ,
98
98
project_id : d . projects [ 0 ] ?. id ?? 0 ,
99
99
} ) ) ;
100
100
Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ function ReleaseCard({
88
88
dateCreated,
89
89
versionInfo,
90
90
adoptionStages,
91
+ newGroups,
91
92
projects,
92
93
} = release ;
93
94
@@ -267,6 +268,7 @@ function ReleaseCard({
267
268
location = { location }
268
269
organization = { organization }
269
270
project = { project }
271
+ newGroups = { newGroups }
270
272
releaseVersion = { version }
271
273
showPlaceholders = { showHealthPlaceholders }
272
274
showReleaseAdoptionStages = { showReleaseAdoptionStages }
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ type Props = {
65
65
index : number ;
66
66
isTopRelease : boolean ;
67
67
location : Location ;
68
+ newGroups : number ;
68
69
organization : Organization ;
69
70
project : ReleaseProject ;
70
71
releaseVersion : string ;
@@ -85,9 +86,10 @@ function ReleaseCardProjectRow({
85
86
releaseVersion,
86
87
showPlaceholders,
87
88
showReleaseAdoptionStages,
89
+ newGroups,
88
90
} : Props ) {
89
91
const theme = useTheme ( ) ;
90
- const { id, newGroups } = project ;
92
+ const { id} = project ;
91
93
92
94
const crashCount = getHealthData . getCrashCount (
93
95
releaseVersion ,
You can’t perform that action at this time.
0 commit comments