diff --git a/src/pages/repos/modules/WorkspaceDetailDialog.tsx b/src/pages/repos/modules/WorkspaceDetailDialog.tsx index 6da64dd..696ac0a 100644 --- a/src/pages/repos/modules/WorkspaceDetailDialog.tsx +++ b/src/pages/repos/modules/WorkspaceDetailDialog.tsx @@ -49,7 +49,7 @@ const LinkItem = ({ label, icon, url }: { label: string; icon: React.ReactNode; copy() return; } - if (url && url.startsWith('http')) { + if (url && url.includes(':')) { window.open(url, '_blank') } }