File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/vs/workbench/contrib/mcp/browser Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -558,7 +558,7 @@ export class McpServerEditor extends EditorPane {
558
558
559
559
private async openConfiguration ( mcpServer : IWorkbenchMcpServer , template : IExtensionEditorTemplate , token : CancellationToken ) : Promise < IActiveElement | null > {
560
560
const configContainer = append ( template . content , $ ( '.configuration' ) ) ;
561
- const content = $ ( 'div' , { class : 'configuration-content' , tabindex : '0' } ) ;
561
+ const content = $ ( 'div' , { class : 'configuration-content' } ) ;
562
562
563
563
this . renderConfigurationDetails ( content , mcpServer ) ;
564
564
@@ -573,7 +573,7 @@ export class McpServerEditor extends EditorPane {
573
573
574
574
private async openManifest ( mcpServer : IWorkbenchMcpServer , template : IExtensionEditorTemplate , token : CancellationToken ) : Promise < IActiveElement | null > {
575
575
const manifestContainer = append ( template . content , $ ( '.manifest' ) ) ;
576
- const content = $ ( 'div' , { class : 'manifest-content' , tabindex : '0' } ) ;
576
+ const content = $ ( 'div' , { class : 'manifest-content' } ) ;
577
577
578
578
try {
579
579
const manifest = await this . loadContents ( ( ) => this . mcpServerManifest ! . get ( ) , content ) ;
You can’t perform that action at this time.
0 commit comments