fix: lightboxModal, selectedTab

This commit is contained in:
AlUlkesh
2023-03-27 20:01:19 +02:00
parent 955df7751e
commit 9ecf347133
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ onUiUpdate(function(){
let modalObserver = new MutationObserver(function(mutations) {
mutations.forEach(function(mutationRecord) {
let selectedTab = gradioApp().querySelector('#tabs div button.bg-white')?.innerText
let selectedTab = gradioApp().querySelector('#tabs div button')?.innerText
if (mutationRecord.target.style.display === 'none' && selectedTab === 'txt2img' || selectedTab === 'img2img')
gradioApp().getElementById(selectedTab+"_generation_info_button").click()
});