From de6e95596ee8ec33f171114c2f2ffeeffb640bc6 Mon Sep 17 00:00:00 2001 From: drakenfly <8741982+drakenfly@users.noreply.github.com> Date: Thu, 21 Dec 2023 21:16:47 +0100 Subject: [PATCH] JENKINS-70421 Add missing test result badges to menu item --- blueocean-dashboard/src/main/js/components/RunDetails.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueocean-dashboard/src/main/js/components/RunDetails.jsx b/blueocean-dashboard/src/main/js/components/RunDetails.jsx index 5943815b213..0d79f31e6a6 100644 --- a/blueocean-dashboard/src/main/js/components/RunDetails.jsx +++ b/blueocean-dashboard/src/main/js/components/RunDetails.jsx @@ -156,7 +156,7 @@ class RunDetails extends Component { const baseUrl = UrlBuilder.buildRunUrl(params.organization, params.pipeline, params.branch, params.runId, null); logger.debug('params', params.organization, params.pipeline, params.branch, params.runId); - const currentRun = new RunRecord(run); + const currentRun = new RunRecord({...run, testSummary}); const computedTitle = `${currentRun.organization} / ${pipeline.fullName} / ${params.pipeline === params.branch ? '' : `${params.branch} / `} #${ currentRun.id }`;