From 06043d90992bae26a7c7ca6da7cc5c30b7535d31 Mon Sep 17 00:00:00 2001 From: Jai Bhagat Date: Mon, 15 Aug 2022 11:37:33 -0400 Subject: [PATCH 1/2] refact: add parent check to boolean --- ui/app/components/breadcrumbs/job.hbs | 2 +- ui/app/components/breadcrumbs/job.js | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ui/app/components/breadcrumbs/job.hbs b/ui/app/components/breadcrumbs/job.hbs index d3956485f063..be4b170a3a8e 100644 --- a/ui/app/components/breadcrumbs/job.hbs +++ b/ui/app/components/breadcrumbs/job.hbs @@ -8,7 +8,7 @@ {{/if}} {{#if trigger.data.isSuccess}} - {{#if trigger.data.result}} + {{#if (and trigger.data.result this.hasParent)}}
  • Date: Mon, 15 Aug 2022 11:42:34 -0400 Subject: [PATCH 2/2] chore: add changelog entry --- .changelog/14115.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .changelog/14115.txt diff --git a/.changelog/14115.txt b/.changelog/14115.txt new file mode 100644 index 000000000000..e8a7f86b6ea5 --- /dev/null +++ b/.changelog/14115.txt @@ -0,0 +1,3 @@ +```release-note:bug +ui: Removes duplicate breadcrumb header when navigating from child job back to parent. +```