update sending input event in java script to not cause exception in browser https://github.com/gradio-app/gradio/issues/2981

This commit is contained in:
AUTOMATIC
2023-01-17 14:15:47 +03:00
parent aede265f1d
commit 38b7186e6e
3 changed files with 11 additions and 4 deletions

View File

@@ -29,7 +29,7 @@ function install_extension_from_index(button, url){
textarea = gradioApp().querySelector('#extension_to_install textarea')
textarea.value = url
textarea.dispatchEvent(new Event("input", { bubbles: true }))
updateInput(textarea)
gradioApp().querySelector('#install_extension_button').click()
}