diff options
author | evshiron <evshiron@gmail.com> | 2022-11-05 14:12:20 +0000 |
---|---|---|
committer | evshiron <evshiron@gmail.com> | 2022-11-05 14:12:20 +0000 |
commit | b6cfaaa20b81d16a978524c952412cfc4d89a414 (patch) | |
tree | e0aa306e34e796c79f657d2a73f558de46f80764 /modules/ui_extensions.py | |
parent | 73e1cd6f53f3566973805666a4049450cdb8da1b (diff) | |
parent | 62e3d71aa778928d63cab81d9d8cde33e55bebb3 (diff) | |
download | stable-diffusion-webui-gfx803-b6cfaaa20b81d16a978524c952412cfc4d89a414.tar.gz stable-diffusion-webui-gfx803-b6cfaaa20b81d16a978524c952412cfc4d89a414.tar.bz2 stable-diffusion-webui-gfx803-b6cfaaa20b81d16a978524c952412cfc4d89a414.zip |
Merge branch 'master' into fix/encode-pnginfo
Diffstat (limited to 'modules/ui_extensions.py')
-rw-r--r-- | modules/ui_extensions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui_extensions.py b/modules/ui_extensions.py index a81de9a7..8e0d41d5 100644 --- a/modules/ui_extensions.py +++ b/modules/ui_extensions.py @@ -188,7 +188,7 @@ def refresh_available_extensions_from_data(): code += f"""
<tr>
- <td><a href="{html.escape(url)}">{html.escape(name)}</a></td>
+ <td><a href="{html.escape(url)}" target="_blank">{html.escape(name)}</a></td>
<td>{html.escape(description)}</td>
<td>{install_code}</td>
</tr>
|