fix select won't update #10

Merge pull request #17 from RikaCelery/cli2re
This commit is contained in:
RikaCelery 2023-07-27 14:27:20 +08:00 committed by GitHub
commit c0aef12ba3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,3 +65,7 @@ generate('generator_body')
for (const input of document.querySelectorAll('input')) {
input.addEventListener('input', () => generate('generator_body'))
}
for (const input of document.querySelectorAll('select')) {
input.addEventListener('input', () => generate('generator_body'))
}