diff --git a/client/src/components/ResultPanel/ResultPanel.ts b/client/src/components/ResultPanel/ResultPanel.ts index 034eb6f99..358a7c8d2 100644 --- a/client/src/components/ResultPanel/ResultPanel.ts +++ b/client/src/components/ResultPanel/ResultPanel.ts @@ -39,7 +39,10 @@ export const showResult = (html: string, uri?: Uri, title?: string) => { preserveFocus: true, viewColumn: sideResult ? ViewColumn.Beside : ViewColumn.Active, }, // Editor column to show the new webview panel in. - { enableScripts: true }, // Webview options. + { + enableScripts: true, + enableFindWidget: true, + }, // Webview options. ); webviewPanel.onDidDispose(() => disposePanel(panelId)); resultPanel = { webviewPanel, panelId };