Fixing strict init errors in webview code

#78168
This commit is contained in:
Matt Bierner
2019-10-07 16:38:17 -07:00
parent 4388300e89
commit 6fdd8d10dc
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ import { Disposable } from './extHostTypes';
type IconPath = URI | { light: URI, dark: URI };
export class ExtHostWebview implements vscode.Webview {
private _html: string;
private _html: string = '';
private _isDisposed: boolean = false;
private _hasCalledAsWebviewUri = false;