@@ -368,7 +368,7 @@ export class LaunchpadIndicator implements Disposable {
368
368
source : 'launchpad-indicator' ,
369
369
state : {
370
370
initialGroup : 'mergeable' ,
371
- selectTopItem : labelType === 'item' ,
371
+ selectTopItem : true ,
372
372
} ,
373
373
} satisfies Omit < LaunchpadCommandArgs , 'command' > ) ,
374
374
) } "Open Ready to Merge in Launchpad")`,
@@ -429,7 +429,10 @@ export class LaunchpadIndicator implements Disposable {
429
429
} ](command:gitlens.showLaunchpad?${ encodeURIComponent (
430
430
JSON . stringify ( {
431
431
source : 'launchpad-indicator' ,
432
- state : { initialGroup : 'blocked' , selectTopItem : labelType === 'item' } ,
432
+ state : {
433
+ initialGroup : 'blocked' ,
434
+ selectTopItem : true ,
435
+ } ,
433
436
} satisfies Omit < LaunchpadCommandArgs , 'command' > ) ,
434
437
) } "Open Blocked in Launchpad")`,
435
438
) ;
@@ -465,7 +468,7 @@ export class LaunchpadIndicator implements Disposable {
465
468
source : 'launchpad-indicator' ,
466
469
state : {
467
470
initialGroup : 'follow-up' ,
468
- selectTopItem : labelType === 'item' ,
471
+ selectTopItem : true ,
469
472
} ,
470
473
} satisfies Omit < LaunchpadCommandArgs , 'command' > ) ,
471
474
) } "Open Follow-Up in Launchpad")`,
@@ -488,7 +491,7 @@ export class LaunchpadIndicator implements Disposable {
488
491
source : 'launchpad-indicator' ,
489
492
state : {
490
493
initialGroup : 'needs-review' ,
491
- selectTopItem : labelType === 'item' ,
494
+ selectTopItem : true ,
492
495
} ,
493
496
} satisfies Omit < LaunchpadCommandArgs , 'command' > ) ,
494
497
) } "Open Needs Your Review in Launchpad")`,
0 commit comments