diff options
author | GeorgLegato <bulbul@onlinehome.de> | 2023-04-03 02:53:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-03 02:53:29 +0000 |
commit | d9fdb5214922b10a16c66207376953460972c6e8 (patch) | |
tree | 0fbaf01f28e825f6271fda1a220fd4c29623d3b8 | |
parent | 22bcc7be428c94e9408f589966c2040187245d81 (diff) | |
download | stable-diffusion-webui-gfx803-d9fdb5214922b10a16c66207376953460972c6e8.tar.gz stable-diffusion-webui-gfx803-d9fdb5214922b10a16c66207376953460972c6e8.tar.bz2 stable-diffusion-webui-gfx803-d9fdb5214922b10a16c66207376953460972c6e8.zip |
Update script.js
updated how tabs are presented in DOM with Gradio 3.23.
-rw-r--r-- | script.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ function gradioApp() { } function get_uiCurrentTab() { - return gradioApp().querySelector('#tabs button:not(.border-transparent)') + return gradioApp().querySelector('#tabs button.selected') } function get_uiCurrentTabContent() { |