Skip to content

Commit

Permalink
Rename rebuild() -> update_children()
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpap committed Feb 15, 2024
1 parent 816ed20 commit c1056b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/models/reactive_html.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export class ReactiveHTMLView extends HTMLBoxView {
super.connect_signals()
this.connect(this.model.properties.children.change, async () => {
this.html = htmlDecode(this.model.html) || this.model.html
await this.rebuild()
await this.update_children()
})
this._recursive_connect(this.model.data, true, '')
this.connect(this.model.properties.events.change, () => {
Expand Down

0 comments on commit c1056b5

Please sign in to comment.