Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
turner committed Jan 15, 2025
1 parent 08c7275 commit 7bab4c3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion js/ui/components/inputDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,12 @@ class InputDialog {
}


present(parent) {
present(options, e) {

this.label.textContent = options.label
this._input.value = options.value
this.callback = options.callback || options.click

this.container.style.display = 'flex';
}

Expand Down

0 comments on commit 7bab4c3

Please sign in to comment.