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> {
512
512
? new ThemeIcon ( 'account' )
513
513
: i . author ?. avatarUrl != null
514
514
? Uri . parse ( i . author . avatarUrl )
515
- : undefined ,
515
+ : new ThemeIcon ( 'account' ) ,
516
516
item : i ,
517
517
picked :
518
518
i . graphQLId != null
@@ -1496,7 +1496,7 @@ function getLaunchpadItemReviewInformation(item: LaunchpadItem): QuickPickItemOf
1496
1496
? new ThemeIcon ( 'account' )
1497
1497
: review . reviewer . avatarUrl != null
1498
1498
? Uri . parse ( review . reviewer . avatarUrl )
1499
- : undefined ;
1499
+ : new ThemeIcon ( 'account' ) ;
1500
1500
switch ( review . state ) {
1501
1501
case ProviderPullRequestReviewState . Approved :
1502
1502
reviewLabel = `${ isCurrentUser ? 'You' : review . reviewer . username } approved these changes` ;
You can’t perform that action at this time.
0 commit comments