Skip to content

Commit 904bd6a

Browse files
committed
Shows user-icons on Azure DevOps Server PRs
(#4478, #4516)
1 parent 3cc5aee commit 904bd6a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/plus/launchpad/launchpad.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)