Unverified Commit 6825de7b authored by Thomas Young's avatar Thomas Young Committed by GitHub
Browse files

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.
parent 0cc0ee1b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;