File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -457,7 +457,6 @@ export class LaunchpadCommand extends QuickCommand<State> {
457457 item : i ,
458458 picked : i . graphQLId === picked || i . graphQLId === topItem ?. graphQLId ,
459459 group : ui ,
460- alwaysShow : i . isSearched ,
461460 } ;
462461 } ;
463462
@@ -623,6 +622,11 @@ export class LaunchpadCommand extends QuickCommand<State> {
623622 }
624623 // Nothing is found above, so let's perform search in the API:
625624 await updateItems ( quickpick , value ) ;
625+ quickpick . items . forEach ( i => {
626+ if ( 'item' in i && doesPullRequestSatisfyGitHubRepositoryURLIdentity ( i . item , prUrlIdentity ) ) {
627+ i . alwaysShow = true ;
628+ }
629+ } ) ;
626630 quickpick . items = quickpick . items . filter ( ( i ) : i is LaunchpadItemQuickPickItem => 'item' in i ) ;
627631 groupsHidden = true ;
628632 return true ;
You can’t perform that action at this time.
0 commit comments