File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
apps/web/app/routes/ws/deployments/_components/release-targets Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -312,14 +312,16 @@ function VerificationStatusBadge({
312312 < DialogHeader >
313313 < DialogTitle > Verifications</ DialogTitle >
314314 </ DialogHeader >
315- { verifications . map ( ( verification ) => (
316- < Fragment key = { verification . id } >
317- < div className = "text-sm font-medium" > { verification . message } </ div >
318- { verification . metrics . map ( ( metric ) => (
319- < MetricDisplay key = { metric . name } metric = { metric } />
320- ) ) }
321- </ Fragment >
322- ) ) }
315+ < div className = "space-y-2" >
316+ { verifications . map ( ( verification ) => (
317+ < Fragment key = { verification . id } >
318+ < div className = "text-sm font-medium" > { verification . message } </ div >
319+ { verification . metrics . map ( ( metric ) => (
320+ < MetricDisplay key = { metric . name } metric = { metric } />
321+ ) ) }
322+ </ Fragment >
323+ ) ) }
324+ </ div >
323325 </ DialogContent >
324326 </ Dialog >
325327 ) ;
You can’t perform that action at this time.
0 commit comments