Use correct $name for onDidDisposeWebviewPanel event

Fixes #48127
This commit is contained in:
Matt Bierner
2018-04-18 11:32:20 -07:00
parent 1ffe882f1d
commit 52a75ecf23
3 changed files with 3 additions and 3 deletions

View File

@@ -254,7 +254,7 @@ export class ExtHostWebviews implements ExtHostWebviewsShape {
}
}
onDidDisposeWebviewPanel(handle: WebviewPanelHandle): Thenable<void> {
$onDidDisposeWebviewPanel(handle: WebviewPanelHandle): Thenable<void> {
const panel = this.getWebviewPanel(handle);
if (panel) {
panel.dispose();