diff options
author | innovaciones <sonygarcia99@gmail.com> | 2022-11-04 18:14:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-04 18:14:32 +0000 |
commit | 0d7e01d9950e013784c4b77c05aa7583ea69edc8 (patch) | |
tree | 3133475678a38a9a9284052800368d0605681227 /modules/ui_extensions.py | |
parent | 89722fb5e4eda2adc5d3a6abf8babf8a58e80d69 (diff) | |
download | stable-diffusion-webui-gfx803-0d7e01d9950e013784c4b77c05aa7583ea69edc8.tar.gz stable-diffusion-webui-gfx803-0d7e01d9950e013784c4b77c05aa7583ea69edc8.tar.bz2 stable-diffusion-webui-gfx803-0d7e01d9950e013784c4b77c05aa7583ea69edc8.zip |
Open extensions links in new tab
Fixed for "Available" tab
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>
|