mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 17:22:25 -05:00
Strict null contrib/webview (#11921)
* strict null contrib/webview * fix compile
This commit is contained in:
@@ -48,12 +48,12 @@ export class MainThreadModalDialog implements MainThreadModalDialogShape {
|
||||
|
||||
$setTitle(handle: number, value: string): void {
|
||||
const dialog = this._dialogs.get(handle);
|
||||
dialog.headerTitle = value;
|
||||
dialog.setHeaderTitle(value);
|
||||
}
|
||||
|
||||
$setHtml(handle: number, value: string): void {
|
||||
const dialog = this._dialogs.get(handle);
|
||||
dialog.html = value;
|
||||
dialog.setHtml(value);
|
||||
}
|
||||
|
||||
$show(handle: number): void {
|
||||
|
||||
Reference in New Issue
Block a user