Skip to content

Commit

Permalink
amend previous commit to work in a proper fashion when saving previews
Browse files Browse the repository at this point in the history
  • Loading branch information
AUTOMATIC1111 committed Jan 22, 2023
1 parent 35419b2 commit c98cb0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/ui_extra_networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ def tab_name_score(name):
def create_ui(container, button, tabname):
ui = ExtraNetworksUi()
ui.pages = []
ui.stored_extra_pages = extra_pages.copy()
ui.stored_extra_pages = pages_in_preferred_order(extra_pages.copy())
ui.tabname = tabname

with gr.Tabs(elem_id=tabname+"_extra_tabs") as tabs:
for page in pages_in_preferred_order(ui.stored_extra_pages):
for page in ui.stored_extra_pages:
with gr.Tab(page.title):
page_elem = gr.HTML(page.create_html(ui.tabname))
ui.pages.append(page_elem)
Expand Down

0 comments on commit c98cb0f

Please sign in to comment.