aboutsummaryrefslogtreecommitdiff
path: root/modules/ui_extra_networks.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-07-26 15:17:37 +0300
committerAUTOMATIC1111 <16777216c@gmail.com>2023-07-26 15:18:04 +0300
commit8220cf37da8130980b036535bc2fba6b89417158 (patch)
tree23beb08580d60669cdf4e78eddb58a5c68671304 /modules/ui_extra_networks.py
parent055461ae41436e0fcbdf9f5c6b82c9441c6b5b5f (diff)
Merge pull request #12020 from Littleor/dev
Fix the error in rendering the name and description in the extra network 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 49612298..f2752f10 100644
--- a/modules/ui_extra_networks.py
+++ b/modules/ui_extra_networks.py
@@ -253,7 +253,7 @@ class ExtraNetworksPage:
"prompt": item.get("prompt", None),
"tabname": quote_js(tabname),
"local_preview": quote_js(item["local_preview"]),
- "name": item["name"],
+ "name": html.escape(item["name"]),
"description": (item.get("description") or "" if shared.opts.extra_networks_card_show_desc else ""),
"card_clicked": onclick,
"save_card_preview": '"' + html.escape(f"""return saveCardPreview(event, {quote_js(tabname)}, {quote_js(item["local_preview"])})""") + '"',