observablehq / inputs

Better input elements
https://observablehq.com/framework/lib/inputs
ISC License
127 stars 34 forks source link

Assigning a value to Inputs.text() with {submit: true} does not enable button #253

Open mootari opened 1 year ago

mootari commented 1 year ago

Given an input

viewof text = Inputs.text({value: "foo", submit: true})

if a cell assigns a new value

viewof text.value = "bar"

then the button remains disabled. Users have to modify the value before they can resubmit.