File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -512,7 +512,7 @@ export class LaunchpadCommand extends QuickCommand<State> {
512512 ? new ThemeIcon ( 'account' )
513513 : i . author ?. avatarUrl != null
514514 ? Uri . parse ( i . author . avatarUrl )
515- : undefined ,
515+ : new ThemeIcon ( 'account' ) ,
516516 item : i ,
517517 picked :
518518 i . graphQLId != null
@@ -1496,7 +1496,7 @@ function getLaunchpadItemReviewInformation(item: LaunchpadItem): QuickPickItemOf
14961496 ? new ThemeIcon ( 'account' )
14971497 : review . reviewer . avatarUrl != null
14981498 ? Uri . parse ( review . reviewer . avatarUrl )
1499- : undefined ;
1499+ : new ThemeIcon ( 'account' ) ;
15001500 switch ( review . state ) {
15011501 case ProviderPullRequestReviewState . Approved :
15021502 reviewLabel = `${ isCurrentUser ? 'You' : review . reviewer . username } approved these changes` ;
You can’t perform that action at this time.
0 commit comments