mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 06:21:50 +01:00
@@ -483,7 +483,7 @@ export class MainThreadWebviews implements MainThreadWebviewsShape {
|
||||
private onEditorsChanged() {
|
||||
const activeEditor = this._editorService.getActiveEditor();
|
||||
let newActiveWebview: { input: WebviewInput, handle: WebviewHandle } | undefined = undefined;
|
||||
if (activeEditor.input instanceof WebviewInput) {
|
||||
if (activeEditor && activeEditor.input instanceof WebviewInput) {
|
||||
for (const handle of map.keys(this._webviews)) {
|
||||
const input = this._webviews.get(handle);
|
||||
if (input.matches(activeEditor.input)) {
|
||||
@@ -522,4 +522,4 @@ export class MainThreadWebviews implements MainThreadWebviewsShape {
|
||||
WebviewEditor,
|
||||
WebviewEditor.ID,
|
||||
localize('webview.editor.label', "webview editor")),
|
||||
[new SyncDescriptor(WebviewInput)]);
|
||||
[new SyncDescriptor(WebviewInput)]);
|
||||
|
||||
Reference in New Issue
Block a user