Skip to content

Commit e42e7fd

Browse files
committed
Compability with Bokeh 3.5
1 parent a62bad9 commit e42e7fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ipywidgets_bokeh/src/widget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export class IPyWidgetView extends LayoutDOMView {
6565

6666
override render(): void {
6767
super.render()
68-
this.container = div({style: "display: contents;"}) // ipywidgets' APIs require HTMLElement, not DocumentFragment
68+
this.container = div({style: {display: "contents"}}) // ipywidgets' APIs require HTMLElement, not DocumentFragment
6969
this.shadow_el.append(this.container)
7070
void this._render().then(() => {
7171
this.invalidate_layout() // TODO: this may be overzealous; probably should be removed

0 commit comments

Comments
 (0)