Merge pull request #12020 from Littleor/dev

Fix the error in rendering the name and description in the extra network UI.
This commit is contained in:
AUTOMATIC1111 2023-07-26 15:17:37 +03:00
parent 055461ae41
commit 8220cf37da
1 changed files with 1 additions and 1 deletions

View File

@ -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"])})""") + '"',