Skip to content

Commit 9add99d

Browse files
authored
1 parent 9cc20ca commit 9add99d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/mcp/browser/mcpServerEditor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ export class McpServerEditor extends EditorPane {
558558

559559
private async openConfiguration(mcpServer: IWorkbenchMcpServer, template: IExtensionEditorTemplate, token: CancellationToken): Promise<IActiveElement | null> {
560560
const configContainer = append(template.content, $('.configuration'));
561-
const content = $('div', { class: 'configuration-content', tabindex: '0' });
561+
const content = $('div', { class: 'configuration-content' });
562562

563563
this.renderConfigurationDetails(content, mcpServer);
564564

@@ -573,7 +573,7 @@ export class McpServerEditor extends EditorPane {
573573

574574
private async openManifest(mcpServer: IWorkbenchMcpServer, template: IExtensionEditorTemplate, token: CancellationToken): Promise<IActiveElement | null> {
575575
const manifestContainer = append(template.content, $('.manifest'));
576-
const content = $('div', { class: 'manifest-content', tabindex: '0' });
576+
const content = $('div', { class: 'manifest-content' });
577577

578578
try {
579579
const manifest = await this.loadContents(() => this.mcpServerManifest!.get(), content);

0 commit comments

Comments
 (0)