This commit is contained in:
Rob Lourens 2024-04-16 09:53:51 -07:00
parent 4eb72c92de
commit c3c806af39
2 changed files with 2 additions and 3 deletions

View file

@ -203,7 +203,7 @@ export class ChatExtensionPointHandler implements IWorkbenchContribution {
{
extensionId: extension.description.identifier,
extensionPublisher: extension.description.publisherDisplayName ?? extension.description.publisher, // May not be present in OSS
extensionDisplayName: extension.description.displayName ?? extension.description.name, // ?
extensionDisplayName: extension.description.displayName ?? extension.description.name,
id: providerDescriptor.id,
description: providerDescriptor.description,
metadata: {

View file

@ -2975,8 +2975,7 @@ CommandsRegistry.registerCommand('workbench.extensions.action.showExtensionsForL
});
});
export const showExtensionsWithIdsCommandId = 'workbench.extensions.action.showExtensionsWithIds';
CommandsRegistry.registerCommand(showExtensionsWithIdsCommandId, function (accessor: ServicesAccessor, extensionIds: string[]) {
CommandsRegistry.registerCommand('workbench.extensions.action.showExtensionsWithIds', function (accessor: ServicesAccessor, extensionIds: string[]) {
const paneCompositeService = accessor.get(IPaneCompositePartService);
return paneCompositeService.openPaneComposite(VIEWLET_ID, ViewContainerLocation.Sidebar, true)