mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 10:38:59 +01:00
Fixes unknown webview on postMessage
Fixes #45555. These errors will now show up in #45553
This commit is contained in:
@@ -99,10 +99,12 @@ export class ExtHostWebview implements vscode.Webview {
|
||||
}
|
||||
|
||||
public postMessage(message: any): Thenable<boolean> {
|
||||
this.assertNotDisposed();
|
||||
return this._proxy.$sendMessage(this._handle, message);
|
||||
}
|
||||
|
||||
public show(viewColumn: vscode.ViewColumn): void {
|
||||
this.assertNotDisposed();
|
||||
this._proxy.$show(this._handle, typeConverters.fromViewColumn(viewColumn));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user