diff --git a/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.ts b/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.ts index b91e8522bc0..287eebf6793 100644 --- a/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.ts +++ b/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.ts @@ -558,7 +558,7 @@ export class McpServerEditor extends EditorPane { private async openConfiguration(mcpServer: IWorkbenchMcpServer, template: IExtensionEditorTemplate, token: CancellationToken): Promise { const configContainer = append(template.content, $('.configuration')); - const content = $('div', { class: 'configuration-content', tabindex: '0' }); + const content = $('div', { class: 'configuration-content' }); this.renderConfigurationDetails(content, mcpServer); @@ -573,7 +573,7 @@ export class McpServerEditor extends EditorPane { private async openManifest(mcpServer: IWorkbenchMcpServer, template: IExtensionEditorTemplate, token: CancellationToken): Promise { const manifestContainer = append(template.content, $('.manifest')); - const content = $('div', { class: 'manifest-content', tabindex: '0' }); + const content = $('div', { class: 'manifest-content' }); try { const manifest = await this.loadContents(() => this.mcpServerManifest!.get(), content);