Skip to content

Commit e33d6cb

Browse files
authored
Make extension manager Remote links open a new tab
1 parent d98eace commit e33d6cb

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)