From 919a3cf9d093fe0abd0657a4375ddc3c0b37376e Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Sun, 13 Aug 2023 05:43:09 -0700 Subject: [PATCH] Fix the gallery --- extensions/gallery/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/gallery/script.js b/extensions/gallery/script.js index 878401ec..0f25b4ea 100644 --- a/extensions/gallery/script.js +++ b/extensions/gallery/script.js @@ -7,7 +7,7 @@ main_parent.addEventListener('click', function(e) { // Only show this extension in the Chat tab if (chat_visible) { - gallery_element.style.display = 'flex'; + gallery_element.style.display = 'block'; } else { gallery_element.style.display = 'none'; }