stable-diffusion-webui-images-browser
stable-diffusion-webui-images-browser copied to clipboard
The buttons disappear as soon as I click First Page, no generate info or filenames display
The UI looks correct when I reload the web page, but as soon as I click any of the Page buttons all of the other buttons disappear. When I click an image there is no generate info or file name. So it does nothing more than display images right now.
and no send to img2img etc on my side
The same happens here.
Using Chrome DevTools, I noticed a CSS class hide
have added to div txt2img_images_history_button_panel
.
https://snipboard.io/CiYj6w.jpg
Removing this class, the buttons are shown.
https://snipboard.io/MEst0v.jpg.
Now it's just to investigate where is the code that does that...
Using Chrome DevTools, I noticed a CSS class hide have added to div txt2img_images_history_button_panel.
I now use this Stylus custom CSS rule
#image_browser_tab_txt2img_image_browser_button_panel { display: block!important; }
Like this the txt2img
etc. buttons are at least visible and usable.