mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
Escape btn_copy_path filename
This commit is contained in:
parent
bef51aed03
commit
3fa1ebed62
@ -10,6 +10,7 @@ from modules.images import read_info_from_image, save_image_with_geninfo
|
|||||||
import gradio as gr
|
import gradio as gr
|
||||||
import json
|
import json
|
||||||
import html
|
import html
|
||||||
|
import re
|
||||||
from fastapi.exceptions import HTTPException
|
from fastapi.exceptions import HTTPException
|
||||||
|
|
||||||
from modules.infotext_utils import image_from_url_text
|
from modules.infotext_utils import image_from_url_text
|
||||||
@ -236,7 +237,7 @@ class ExtraNetworksPage:
|
|||||||
)
|
)
|
||||||
onclick = html.escape(onclick)
|
onclick = html.escape(onclick)
|
||||||
|
|
||||||
btn_copy_path = self.btn_copy_path_tpl.format(**{"filename": item["filename"]})
|
btn_copy_path = self.btn_copy_path_tpl.format(**{"filename": re.sub(r"[\\\"']", r"\\\g<0>", item["filename"])})
|
||||||
btn_metadata = ""
|
btn_metadata = ""
|
||||||
metadata = item.get("metadata")
|
metadata = item.get("metadata")
|
||||||
if metadata:
|
if metadata:
|
||||||
|
Loading…
Reference in New Issue
Block a user