aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2024-02-01 23:54:57 +0300
committerAUTOMATIC1111 <16777216c@gmail.com>2024-02-01 23:54:57 +0300
commit26003706593786d4e17b71139967ded109c3b7b3 (patch)
tree908caba0fee4b262a5d5875a67e707400d87d4c6
parent9f3ba383143e117601666e4711ceeff2dfda2526 (diff)
fix error when editing extra networks card
-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 325d848e..58981daf 100644
--- a/modules/ui_extra_networks.py
+++ b/modules/ui_extra_networks.py
@@ -135,7 +135,7 @@ def get_single_card(page: str = "", tabname: str = "", name: str = ""):
item = page.items.get(name)
page.read_user_metadata(item)
- item_html = page.create_item_html(tabname, item)
+ item_html = page.create_item_html(tabname, item, shared.html("extra-networks-card.html"))
return JSONResponse({"html": item_html})