Skip to content

Commit 38b89a1

Browse files
authored
Fix webview regression (microsoft#163916)
1 parent 256aaf2 commit 38b89a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/webview/browser/overlayWebview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ export class OverlayWebview extends Disposable implements IOverlayWebview {
253253
this._shouldShowFindWidgetOnRestore = false;
254254
}
255255

256-
this.container.style.visibility = 'visible';
256+
this._container?.setVisibility('visible');
257257
}
258258

259259
public get html(): string { return this._html; }

0 commit comments

Comments
 (0)