diff --git a/src/webviews/apps/plus/home/components/branch-card.ts b/src/webviews/apps/plus/home/components/branch-card.ts index 2882764aa1d14..144f91c77ae0b 100644 --- a/src/webviews/apps/plus/home/components/branch-card.ts +++ b/src/webviews/apps/plus/home/components/branch-card.ts @@ -413,15 +413,21 @@ export abstract class GlBranchCardBase extends GlElement { #${this.branch.pr.id}
+ ${this.renderLaunchpad()} `; } - // ${this.branch.pr.launchpad != null - // ? html`- // ${this.branch.pr.launchpad.category} - //
` - // : nothing} + protected renderLaunchpad() { + const launchpad = this.branch.pr?.launchpad; + if (launchpad == null) return nothing; + + return html`+ ${launchpad.category} +
+