Skip to content

Commit

Permalink
remove modal_children
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Dec 2, 2024
1 parent 06aee3f commit cf3414e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions panel/models/modal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export class ModalView extends BkColumnView {

modal: A11yDialogView
close_button: HTMLButtonElement
modal_children: HTMLElement

override connect_signals(): void {
super.connect_signals()
Expand Down Expand Up @@ -92,13 +91,11 @@ export class ModalView extends BkColumnView {
ariaLabel: "Close this dialog window",
} as any)
this.close_button.innerHTML = "&#x2715"
this.modal_children = div({id: "pnx_modal_object"})

container.append(dialog)
dialog.append(dialog_overlay)
dialog.append(content)
content.append(this.close_button)
content.append(this.modal_children)
this.shadow_el.append(container)
let first_open = false

Expand Down

0 comments on commit cf3414e

Please sign in to comment.