Skip to content

Commit faa79b0

Browse files
Merge pull request #4199 from Ju1-js/patch-1
Make extension manager remote links open a new tab
2 parents 91c7659 + e33d6cb commit faa79b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/ui_extensions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def extension_table():
8686
code += f"""
8787
<tr>
8888
<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>
89-
<td><a href="{html.escape(ext.remote or '')}">{html.escape(ext.remote or '')}</a></td>
89+
<td><a href="{html.escape(ext.remote or '')}" target="_blank">{html.escape(ext.remote or '')}</a></td>
9090
<td{' class="extension_status"' if ext.remote is not None else ''}>{ext_status}</td>
9191
</tr>
9292
"""

0 commit comments

Comments
 (0)