From 51fc85e458eeb6fd9ebd8f6ddb22cc318d4c309b Mon Sep 17 00:00:00 2001 From: Tobias Fehlmann <33393928+tfehlmann@users.noreply.github.com> Date: Thu, 20 Feb 2025 20:06:24 -0800 Subject: [PATCH] Initialize _events property --- src/widgets.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/widgets.ts b/src/widgets.ts index 3134d00..bd863a4 100644 --- a/src/widgets.ts +++ b/src/widgets.ts @@ -97,6 +97,7 @@ export class BokehView extends DOMWidgetView { this._idle = true this._combine = true this._msgs = [] + this._events = [] const { Receiver } = bk_require('protocol/receiver') this._receiver = new Receiver() this.model.on('change:render_bundle', () => this.render())