aboutsummaryrefslogtreecommitdiffstats
path: root/modules/ui_extensions.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2022-11-05 13:18:29 +0000
committerGitHub <noreply@github.com>2022-11-05 13:18:29 +0000
commitc9b2eef6a3b986fafdd1c13a3fb14969cbe909ca (patch)
tree584a92825e7b8aa453c32e1e58721507f7b4b340 /modules/ui_extensions.py
parentcb84a304f03a7ae986dbbca47438a416bdf6b626 (diff)
parent0d7e01d9950e013784c4b77c05aa7583ea69edc8 (diff)
downloadstable-diffusion-webui-gfx803-c9b2eef6a3b986fafdd1c13a3fb14969cbe909ca.tar.gz
stable-diffusion-webui-gfx803-c9b2eef6a3b986fafdd1c13a3fb14969cbe909ca.tar.bz2
stable-diffusion-webui-gfx803-c9b2eef6a3b986fafdd1c13a3fb14969cbe909ca.zip
Merge pull request #4293 from AUTOMATIC1111/innovaciones-patch-1
Open extensions links in new tab
Diffstat (limited to 'modules/ui_extensions.py')
-rw-r--r--modules/ui_extensions.py2
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>