aboutsummaryrefslogtreecommitdiffstats
path: root/modules/ui_extra_networks.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2023-03-21 06:24:19 +0000
committerAUTOMATIC <16777216c@gmail.com>2023-03-25 06:00:37 +0000
commitff216820fd680b5d04ce6cea7bf21e1bbec356b4 (patch)
tree55a750ac215f90da41fc941a340a8e18443163c4 /modules/ui_extra_networks.py
parentaf2db25c84c9a226ab34959e868fc18740418b4b (diff)
downloadstable-diffusion-webui-gfx803-ff216820fd680b5d04ce6cea7bf21e1bbec356b4.tar.gz
stable-diffusion-webui-gfx803-ff216820fd680b5d04ce6cea7bf21e1bbec356b4.tar.bz2
stable-diffusion-webui-gfx803-ff216820fd680b5d04ce6cea7bf21e1bbec356b4.zip
fix extra networks ui
Diffstat (limited to 'modules/ui_extra_networks.py')
-rw-r--r--modules/ui_extra_networks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui_extra_networks.py b/modules/ui_extra_networks.py
index cdfd6f2a..8cd6d8cf 100644
--- a/modules/ui_extra_networks.py
+++ b/modules/ui_extra_networks.py
@@ -86,7 +86,7 @@ class ExtraNetworksPage:
subdirs = {"": 1, **subdirs}
subdirs_html = "".join([f"""
-<button class='gr-button gr-button-lg gr-button-secondary{" search-all" if subdir=="" else ""}' onclick='extraNetworksSearchButton("{tabname}_extra_tabs", event)'>
+<button class='lg secondary gradio-button custom-button{" search-all" if subdir=="" else ""}' onclick='extraNetworksSearchButton("{tabname}_extra_tabs", event)'>
{html.escape(subdir if subdir!="" else "all")}
</button>
""" for subdir in subdirs])