Skip to content

Commit

Permalink
Temp. as any for Bokeh
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Jun 2, 2024
1 parent a97a8ae commit 07c1d83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion panel/models/ace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class AcePlotView extends HTMLBoxView {
height: "100%",
zIndex: 0,
},
})
} as any)
this.shadow_el.append(this._container)
this._container.textContent = this.model.code
this._editor = ace.edit(this._container)
Expand Down
2 changes: 1 addition & 1 deletion panel/models/singleselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class SingleSelectView extends InputWidgetView {

const disabled = this.model.disabled_options.includes(value)

return option({value, disabled}, _label)
return option({value, disabled} as any, _label)
})

this.input_el = select({
Expand Down

0 comments on commit 07c1d83

Please sign in to comment.