From b64194199fb4852b4ccc0b3648b8c3cd9f486174 Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Thu, 4 Apr 2024 10:24:46 -0700 Subject: [PATCH] Add command description For #209511 --- .../contrib/webview/electron-sandbox/webviewCommands.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/vs/workbench/contrib/webview/electron-sandbox/webviewCommands.ts b/src/vs/workbench/contrib/webview/electron-sandbox/webviewCommands.ts index a498748c8f2ef..8c3989c2ba8de 100644 --- a/src/vs/workbench/contrib/webview/electron-sandbox/webviewCommands.ts +++ b/src/vs/workbench/contrib/webview/electron-sandbox/webviewCommands.ts @@ -17,6 +17,9 @@ export class OpenWebviewDeveloperToolsAction extends Action2 { id: 'workbench.action.webview.openDeveloperTools', title: nls.localize2('openToolsLabel', "Open Webview Developer Tools"), category: Categories.Developer, + metadata: { + description: nls.localize('openToolsDescription', "Opens Developer Tools for active webviews") + }, f1: true }); }