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:
parent
055461ae41
commit
8220cf37da
|
@ -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"])})""") + '"',
|
||||
|
|
Loading…
Reference in New Issue