Skip to content

Commit c3c806a

Browse files
committed
Clean up
1 parent 4eb72c9 commit c3c806a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/vs/workbench/contrib/chat/browser/chatParticipantContributions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export class ChatExtensionPointHandler implements IWorkbenchContribution {
203203
{
204204
extensionId: extension.description.identifier,
205205
extensionPublisher: extension.description.publisherDisplayName ?? extension.description.publisher, // May not be present in OSS
206-
extensionDisplayName: extension.description.displayName ?? extension.description.name, // ?
206+
extensionDisplayName: extension.description.displayName ?? extension.description.name,
207207
id: providerDescriptor.id,
208208
description: providerDescriptor.description,
209209
metadata: {

src/vs/workbench/contrib/extensions/browser/extensionsActions.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2975,8 +2975,7 @@ CommandsRegistry.registerCommand('workbench.extensions.action.showExtensionsForL
29752975
});
29762976
});
29772977

2978-
export const showExtensionsWithIdsCommandId = 'workbench.extensions.action.showExtensionsWithIds';
2979-
CommandsRegistry.registerCommand(showExtensionsWithIdsCommandId, function (accessor: ServicesAccessor, extensionIds: string[]) {
2978+
CommandsRegistry.registerCommand('workbench.extensions.action.showExtensionsWithIds', function (accessor: ServicesAccessor, extensionIds: string[]) {
29802979
const paneCompositeService = accessor.get(IPaneCompositePartService);
29812980

29822981
return paneCompositeService.openPaneComposite(VIEWLET_ID, ViewContainerLocation.Sidebar, true)

0 commit comments

Comments
 (0)