File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -509,6 +509,7 @@ export class LaunchpadCommand extends QuickCommand<State> {
509509 alwaysShow : alwaysShow ,
510510 buttons : buttons ,
511511 iconPath :
512+ i . provider . id === GitSelfManagedHostIntegrationId . AzureDevOpsServer ||
512513 i . provider . id === GitCloudHostIntegrationId . AzureDevOps
513514 ? new ThemeIcon ( 'account' )
514515 : i . author ?. avatarUrl != null
@@ -940,6 +941,7 @@ export class LaunchpadCommand extends QuickCommand<State> {
940941 createdDateRelative : fromNow ( state . item . createdDate ) ,
941942 } ) ,
942943 iconPath :
944+ state . item . provider . id === GitSelfManagedHostIntegrationId . AzureDevOpsServer ||
943945 state . item . provider . id === GitCloudHostIntegrationId . AzureDevOps
944946 ? new ThemeIcon ( 'account' )
945947 : state . item . author ?. avatarUrl != null
@@ -1494,6 +1496,7 @@ function getLaunchpadItemReviewInformation(item: LaunchpadItem): QuickPickItemOf
14941496 const isCurrentUser = review . reviewer . username === item . currentViewer . username ;
14951497 let reviewLabel : string | undefined ;
14961498 const iconPath =
1499+ item . provider . id === GitSelfManagedHostIntegrationId . AzureDevOpsServer ||
14971500 item . provider . id === GitCloudHostIntegrationId . AzureDevOps
14981501 ? new ThemeIcon ( 'account' )
14991502 : review . reviewer . avatarUrl != null
You can’t perform that action at this time.
0 commit comments