From 841139ca705e222e4cfeac6eaefd0f28ad242e1c Mon Sep 17 00:00:00 2001 From: Jonah Iden Date: Wed, 29 Jan 2025 12:28:16 +0100 Subject: [PATCH] typo fix Co-authored-by: Mark Sujew Signed-off-by: Jonah Iden --- .../browser/notebooks/renderers/cell-output-webview.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/plugin-ext/src/main/browser/notebooks/renderers/cell-output-webview.tsx b/packages/plugin-ext/src/main/browser/notebooks/renderers/cell-output-webview.tsx index 24bbd23602d43..938a46b36b12b 100644 --- a/packages/plugin-ext/src/main/browser/notebooks/renderers/cell-output-webview.tsx +++ b/packages/plugin-ext/src/main/browser/notebooks/renderers/cell-output-webview.tsx @@ -243,7 +243,7 @@ export class CellOutputWebviewImpl implements CellOutputWebview, Disposable { protected element?: HTMLDivElement; // React.createRef(); protected webviewWidget: WebviewWidget; - protected webiviewWidgetInitialized = new Deferred(); + protected webviewWidgetInitialized = new Deferred(); protected toDispose = new DisposableCollection(); @@ -260,7 +260,7 @@ export class CellOutputWebviewImpl implements CellOutputWebview, Disposable { this.webviewWidget = await this.widgetManager.getOrCreateWidget(WebviewWidget.FACTORY_ID, { id: this.id }); - this.webiviewWidgetInitialized.resolve(); + this.webviewWidgetInitialized.resolve(); // this.webviewWidget.parent = this.editor ?? null; this.webviewWidget.setContentOptions({ @@ -339,7 +339,7 @@ export class CellOutputWebviewImpl implements CellOutputWebview, Disposable { return
{ if (element) { this.element = element; - await this.webiviewWidgetInitialized.promise; + await this.webviewWidgetInitialized.promise; this.attachWebview(); } }}>
;