Closed johnwatkins0 closed 1 year ago
This fixes an issue where new inputs added to multiple fields are given the value of the last existing input.
multiple
Prior to this fix, when a new input is added, the JS console shows:
Error: Syntax error, unrecognized expression: type="button"
Wrapping the type="button" selector in square brackets fixes the issue. I also removed the quotes around "button" for consistency with another [type=button] selector elsewhere in the file.
type="button"
[type=button]
This fixes an issue where new inputs added to
multiple
fields are given the value of the last existing input.Prior to this fix, when a new input is added, the JS console shows:
Wrapping the
type="button"
selector in square brackets fixes the issue. I also removed the quotes around "button" for consistency with another[type=button]
selector elsewhere in the file.