Added results selector

This causes the querySelectorAll function to only select images in a results div, ignoring images that might be in an extension's gallery.
This commit is contained in:
Thomas Young 2023-02-22 15:31:49 -06:00 committed by GitHub
parent 0cc0ee1bcb
commit 6825de7bc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ onUiUpdate(function(){
}
}
const galleryPreviews = gradioApp().querySelectorAll('div[id^="tab_"][style*="display: block"] img.h-full.w-full.overflow-hidden');
const galleryPreviews = gradioApp().querySelectorAll('div[id^="tab_"][style*="display: block"] div[id$="_results"] img.h-full.w-full.overflow-hidden');
if (galleryPreviews == null) return;