aboutsummaryrefslogtreecommitdiffstats
path: root/modules/ui_extensions.py
diff options
context:
space:
mode:
authorevshiron <evshiron@gmail.com>2022-11-05 01:43:02 +0800
committerevshiron <evshiron@gmail.com>2022-11-05 01:43:02 +0800
commit73e1cd6f53f3566973805666a4049450cdb8da1b (patch)
tree90c4f0e6b8853c564894409c596e4bd57bca578a /modules/ui_extensions.py
parente21fcd72fcf147904a1df060226c4df12acf251e (diff)
parent89722fb5e4eda2adc5d3a6abf8babf8a58e80d69 (diff)
downloadstable-diffusion-webui-gfx803-73e1cd6f53f3566973805666a4049450cdb8da1b.tar.gz
Merge branch 'master' into fix/encode-pnginfo
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 ab807722..a81de9a7 100644
--- a/modules/ui_extensions.py
+++ b/modules/ui_extensions.py
@@ -86,7 +86,7 @@ def extension_table():
code += f"""
<tr>
<td><label><input class="gr-check-radio gr-checkbox" name="enable_{html.escape(ext.name)}" type="checkbox" {'checked="checked"' if ext.enabled else ''}>{html.escape(ext.name)}</label></td>
- <td><a href="{html.escape(ext.remote or '')}">{html.escape(ext.remote or '')}</a></td>
+ <td><a href="{html.escape(ext.remote or '')}" target="_blank">{html.escape(ext.remote or '')}</a></td>
<td{' class="extension_status"' if ext.remote is not None else ''}>{ext_status}</td>
</tr>
"""