We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a62bad9 commit e42e7fdCopy full SHA for e42e7fd
ipywidgets_bokeh/src/widget.ts
@@ -65,7 +65,7 @@ export class IPyWidgetView extends LayoutDOMView {
65
66
override render(): void {
67
super.render()
68
- this.container = div({style: "display: contents;"}) // ipywidgets' APIs require HTMLElement, not DocumentFragment
+ this.container = div({style: {display: "contents"}}) // ipywidgets' APIs require HTMLElement, not DocumentFragment
69
this.shadow_el.append(this.container)
70
void this._render().then(() => {
71
this.invalidate_layout() // TODO: this may be overzealous; probably should be removed
0 commit comments